misskey/src/tools/refresh-question.ts
tamaina 795fb0eb60 Pre-render ReDoc
redoc-cliはexpandResponsesは200のみとすると数値と認識されてしまい設定できないため202,204という指定にしています
2020-04-03 17:13:41 +09:00

19 lines
387 B
TypeScript

import { updateQuestion } from '../remote/activitypub/models/question';
async function main(uri: string): Promise<any> {
return await updateQuestion(uri);
}
export default () => {
const args = process.argv.slice(3);
const uri = args[0];
main(uri).then(result => {
console.log(`Done: ${result}`);
process.exit(0);
}).catch(e => {
console.warn(e);
process.exit(1);
});
}