FoundKey/packages/backend/src/tools/mark-admin.ts
syuilo d071d18dd7
refactor: Use ESM (#8358)
* wip

* wip

* fix

* clean up

* Update tsconfig.json

* Update activitypub.ts

* wip
2022-02-27 11:07:39 +09:00

30 lines
595 B
TypeScript

import { initDb } from '../db/postgre.js';
async function main(username: string) {
if (!username) throw `username required`;
username = username.replace(/^@/, '');
await initDb();
const { Users } = await import('@/models/index');
const res = await Users.update({
usernameLower: username.toLowerCase(),
host: null,
}, {
isAdmin: true,
});
if (res.affected !== 1) {
throw 'Failed';
}
}
const args = process.argv.slice(2);
main(args[0]).then(() => {
console.log('Success');
process.exit(0);
}).catch(e => {
console.error(`Error: ${e.message || e}`);
process.exit(1);
});