795fb0eb60
redoc-cliはexpandResponsesは200のみとすると数値と認識されてしまい設定できないため202,204という指定にしています
34 lines
697 B
TypeScript
34 lines
697 B
TypeScript
import { initDb } from '../db/postgre';
|
|
import { getRepository } from 'typeorm';
|
|
import { User } from '../models/entities/user';
|
|
|
|
async function main(username: string) {
|
|
if (!username) throw `username required`;
|
|
username = username.replace(/^@/, '');
|
|
|
|
await initDb();
|
|
const Users = getRepository(User);
|
|
|
|
const res = await Users.update({
|
|
usernameLower: username.toLowerCase(),
|
|
host: null
|
|
}, {
|
|
isAdmin: true
|
|
});
|
|
|
|
if (res.affected !== 1) {
|
|
throw 'Failed';
|
|
}
|
|
}
|
|
|
|
export default () => {
|
|
const args = process.argv.slice(3);
|
|
|
|
main(args[0]).then(() => {
|
|
console.log('Success');
|
|
process.exit(0);
|
|
}).catch(e => {
|
|
console.error(`Error: ${e.message || e}`);
|
|
process.exit(1);
|
|
});
|
|
}
|