1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-04-01 01:18:10 +02:00

fix: correctly query roles to be removed (#5275)

Fixes / refactors the way roles are being fetched in
`removeRolesOfTypeForUser` to be more consistent with the rest of our
code base.
This commit is contained in:
Nuno Góis 2023-11-06 13:38:12 +00:00 committed by GitHub
parent 75d91360b3
commit 1539cb7553
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -770,9 +770,10 @@ export class AccessStore implements IAccessStore {
userId: number,
roleTypes: string[],
): Promise<void> {
const rolesToRemove = this.db(T.ROLES)
const rolesToRemove = await this.db(T.ROLES)
.select('id')
.whereIn('type', roleTypes);
.whereIn('type', roleTypes)
.pluck('id');
return this.db(T.ROLE_USER)
.where({ user_id: userId })