fix: should retrieve user inactive error in login response API.

fix: prevent from delete or inactivate the current authorized user.
This commit is contained in:
Ahmed Bouhuolia
2020-09-20 18:39:14 +02:00
parent e28f8496c6
commit e2c53f4513
11 changed files with 151 additions and 105 deletions

View File

@@ -98,7 +98,7 @@ export default class SystemUserRepository extends SystemRepository {
* @param {number} userId
*/
async deleteById(userId: number) {
const user = this.getById(userId);
const user = await this.getById(userId);
await SystemUser.query().where('id', userId).delete();
this.flushUserCache(user);
}