Implement Update Question (#4435)
* Update remote votes count * save updatedAt * deliver Update * use renderNote * use id * fix typeof
This commit is contained in:
parent
a485061e22
commit
7325d66c52
10 changed files with 197 additions and 18 deletions
14
src/tools/refresh-question.ts
Normal file
14
src/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);
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue