Fix hashPass and remove error code return on authorize

This commit is contained in:
advplyr 2022-12-18 14:21:38 -06:00
parent 73a61872fa
commit ddce6ec5b7
2 changed files with 2 additions and 3 deletions

View file

@ -100,7 +100,7 @@ class Auth {
}
generateRandomPasswordHash() {
return hashPass(getId())
return this.hashPass(getId())
}
generateAccessToken(payload) {