1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

Update policy service to clear its own state (#8564)

This commit is contained in:
Addison Beck
2024-04-05 13:10:24 -05:00
committed by GitHub
parent edf35a9ad1
commit 2ff990edd2
7 changed files with 3 additions and 71 deletions

View File

@@ -78,5 +78,4 @@ export abstract class PolicyService {
export abstract class InternalPolicyService extends PolicyService {
upsert: (policy: PolicyData) => Promise<void>;
replace: (policies: { [id: string]: PolicyData }) => Promise<void>;
clear: (userId?: string) => Promise<void>;
}