Implement Update Question (#4435)

* Update remote votes count

* save updatedAt

* deliver Update

* use renderNote

* use id

* fix typeof
This commit is contained in:
MeiMei 2019-03-07 21:19:32 +09:00 committed by syuilo
parent a485061e22
commit 7325d66c52
10 changed files with 197 additions and 18 deletions

View 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);
});