mirror of
https://github.com/bitwarden/browser
synced 2025-12-10 21:33:27 +00:00
Fix non-enterprise users being able to access scim (#3250)
This commit is contained in:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user