14
packages/backend/tools/refresh-question.ts
Normal file
14
packages/backend/tools/refresh-question.ts
Normal file
@ -0,0 +1,14 @@
|
||||
import { updateQuestion } from '@/remote/activitypub/models/question';
|
||||
|
||||
async function main(uri: string): Promise<any> {
|
||||
return await updateQuestion(uri);
|
||||
}
|
||||
|
||||
const args = process.argv.slice(2);
|
||||
const uri = args[0];
|
||||
|
||||
main(uri).then(result => {
|
||||
console.log(`Done: ${result}`);
|
||||
}).catch(e => {
|
||||
console.warn(e);
|
||||
});
|
Reference in New Issue
Block a user