yumechi-no-kuni/packages/backend/src/tools/mark-admin.ts

31 lines
592 B
TypeScript
Raw Normal View History

import { initDb } from '../db/postgre';
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(),
2021-12-09 08:58:30 -06:00
host: null,
}, {
2021-12-09 08:58:30 -06:00
isAdmin: true,
});
if (res.affected !== 1) {
throw 'Failed';
}
}
2020-04-03 09:35:14 -05:00
const args = process.argv.slice(2);
2020-04-03 09:35:14 -05:00
main(args[0]).then(() => {
console.log('Success');
process.exit(0);
}).catch(e => {
console.error(`Error: ${e.message || e}`);
process.exit(1);
});