fix roleId being undefined leading to groups override
This commit is contained in:
parent
6acec42ae5
commit
1cb03c7603
|
@ -35,8 +35,6 @@ export function updateAppRole(
|
|||
user.roleId = roles.BUILTIN_ROLE_IDS.ADMIN
|
||||
} else if (!user.roleId && !user?.userGroups?.length) {
|
||||
user.roleId = roles.BUILTIN_ROLE_IDS.PUBLIC
|
||||
} else if (user?.userGroups?.length) {
|
||||
user.roleId = undefined
|
||||
}
|
||||
|
||||
delete user.roles
|
||||
|
|
Loading…
Reference in New Issue