1
0
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:
Thomas Rittson
2022-08-05 10:40:16 +10:00
committed by GitHub
parent f91f4ed568
commit b625767f13

View File

@@ -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() {