Merge branch 'master' into develop
This commit is contained in:
commit
10356b4041
4 changed files with 10 additions and 5 deletions
|
|
@ -22,8 +22,6 @@ export async function signup(username: User['username'], password: UserProfile['
|
|||
throw new Error('INVALID_PASSWORD');
|
||||
}
|
||||
|
||||
const usersCount = await Users.count({});
|
||||
|
||||
// Generate hash of password
|
||||
const salt = await bcrypt.genSalt(8);
|
||||
const hash = await bcrypt.hash(password, salt);
|
||||
|
|
@ -76,7 +74,9 @@ export async function signup(username: User['username'], password: UserProfile['
|
|||
usernameLower: username.toLowerCase(),
|
||||
host: toPunyNullable(host),
|
||||
token: secret,
|
||||
isAdmin: usersCount === 0,
|
||||
isAdmin: (await Users.count({
|
||||
host: null,
|
||||
})) === 0,
|
||||
}));
|
||||
|
||||
await transactionalEntityManager.save(new UserKeypair({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue