mirror of
https://github.com/bitwarden/browser.git
synced 2024-12-22 16:29:09 +01:00
Fix non-enterprise users being able to access scim (#3250)
This commit is contained in:
parent
f91f4ed568
commit
b625767f13
@ -176,7 +176,7 @@ export class Organization {
|
||||
}
|
||||
|
||||
get canManageScim() {
|
||||
return this.isAdmin || this.permissions.manageScim;
|
||||
return (this.isAdmin || this.permissions.manageScim) && this.useScim;
|
||||
}
|
||||
|
||||
get canManagePolicies() {
|
||||
|
Loading…
Reference in New Issue
Block a user