mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 22:33:35 +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() {
|
get canManageScim() {
|
||||||
return this.isAdmin || this.permissions.manageScim;
|
return (this.isAdmin || this.permissions.manageScim) && this.useScim;
|
||||||
}
|
}
|
||||||
|
|
||||||
get canManagePolicies() {
|
get canManagePolicies() {
|
||||||
|
|||||||
Reference in New Issue
Block a user