refactor(server): drop salt column (#1185)

This commit is contained in:
Jason Rasmussen 2022-12-26 23:03:14 -05:00 committed by GitHub
parent 0c896d9e59
commit 4e860b024b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 20 additions and 25 deletions

View file

@ -21,8 +21,7 @@ export class ResetAdminPasswordCommand extends CommandRunner {
let { password } = await this.inquirer.ask<{ password: string }>('prompt-password', undefined);
password = password || randomBytes(24).toString('base64').replace(/\W/g, '');
const salt = await bcrypt.genSalt();
const hashedPassword = await bcrypt.hash(password, salt);
const hashedPassword = await bcrypt.hash(password, 10);
const user = await this.userRepository.findOne({ where: { isAdmin: true } });
if (!user) {
@ -30,7 +29,6 @@ export class ResetAdminPasswordCommand extends CommandRunner {
return;
}
user.salt = salt;
user.password = hashedPassword;
user.shouldChangePassword = true;