1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 14:23:32 +00:00

[PM-25922] Hotfix: Revert canManageDeviceApprovals (#16478)

This commit is contained in:
Jimmy Vo
2025-09-18 15:49:42 -04:00
committed by GitHub
parent 376d2d8bf7
commit 68d7cb4846
2 changed files with 1 additions and 28 deletions

View File

@@ -309,12 +309,7 @@ export class Organization {
}
get canManageDeviceApprovals() {
return (
(this.isAdmin || this.permissions.manageResetPassword) &&
this.useSso &&
this.ssoEnabled &&
this.ssoMemberDecryptionType === MemberDecryptionType.TrustedDeviceEncryption
);
return (this.isAdmin || this.permissions.manageResetPassword) && this.useSso;
}
get isExemptFromPolicies() {