mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
SG-680 - Update Organization model to include a canManageDomainVerification check
This commit is contained in:
@@ -174,6 +174,10 @@ export class Organization {
|
|||||||
return (this.isAdmin || this.permissions.manageSso) && this.useSso;
|
return (this.isAdmin || this.permissions.manageSso) && this.useSso;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get canManageDomainVerification() {
|
||||||
|
return (this.isAdmin || this.permissions.manageSso) && this.useSso;
|
||||||
|
}
|
||||||
|
|
||||||
get canManageScim() {
|
get canManageScim() {
|
||||||
return (this.isAdmin || this.permissions.manageScim) && this.useScim;
|
return (this.isAdmin || this.permissions.manageScim) && this.useScim;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user