1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-21 18:53:29 +00:00

[deps] Autofill: Update prettier to v3 (#7014)

* [deps] Autofill: Update prettier to v3

* prettier formatting updates

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jonathan Prusik <jprusik@classynemesis.com>
This commit is contained in:
renovate[bot]
2023-11-29 16:15:20 -05:00
committed by GitHub
parent 4ff5f38e89
commit 28de9439be
1145 changed files with 5898 additions and 5612 deletions

View File

@@ -20,7 +20,7 @@ export class PolicyService implements InternalPolicyServiceAbstraction {
constructor(
protected stateService: StateService,
private organizationService: OrganizationService
private organizationService: OrganizationService,
) {
this.stateService.activeAccountUnlocked$
.pipe(
@@ -37,7 +37,7 @@ export class PolicyService implements InternalPolicyServiceAbstraction {
const data = await this.stateService.getEncryptedPolicies();
await this.updateObservables(data);
})
}),
)
.subscribe();
}
@@ -50,12 +50,12 @@ export class PolicyService implements InternalPolicyServiceAbstraction {
policies,
policyType,
policyFilter,
userId
userId,
);
if (appliesToCurrentUser) {
return policies.find((policy) => policy.type === policyType && policy.enabled);
}
})
}),
);
}
@@ -136,7 +136,7 @@ export class PolicyService implements InternalPolicyServiceAbstraction {
});
return enforcedOptions;
})
}),
);
}
@@ -145,14 +145,14 @@ export class PolicyService implements InternalPolicyServiceAbstraction {
concatMap(async (policies) => {
const userId = await this.stateService.getUserId();
return await this.checkPoliciesThatApplyToUser(policies, policyType, policyFilter, userId);
})
}),
);
}
evaluateMasterPassword(
passwordStrength: number,
newPassword: string,
enforcedPolicyOptions: MasterPasswordPolicyOptions
enforcedPolicyOptions: MasterPasswordPolicyOptions,
): boolean {
if (enforcedPolicyOptions == null) {
return true;
@@ -194,7 +194,7 @@ export class PolicyService implements InternalPolicyServiceAbstraction {
getResetPasswordPolicyOptions(
policies: Policy[],
orgId: string
orgId: string,
): [ResetPasswordPolicyOptions, boolean] {
const resetPasswordPolicyOptions = new ResetPasswordPolicyOptions();
@@ -203,7 +203,7 @@ export class PolicyService implements InternalPolicyServiceAbstraction {
}
const policy = policies.find(
(p) => p.organizationId === orgId && p.type === PolicyType.ResetPassword && p.enabled
(p) => p.organizationId === orgId && p.type === PolicyType.ResetPassword && p.enabled,
);
resetPasswordPolicyOptions.autoEnrollEnabled = policy?.data?.autoEnrollEnabled ?? false;
@@ -226,7 +226,7 @@ export class PolicyService implements InternalPolicyServiceAbstraction {
async policyAppliesToUser(
policyType: PolicyType,
policyFilter?: (policy: Policy) => boolean,
userId?: string
userId?: string,
) {
const policies = await this.getAll(policyType, userId);
@@ -278,11 +278,11 @@ export class PolicyService implements InternalPolicyServiceAbstraction {
policies: Policy[],
policyType: PolicyType,
policyFilter?: (policy: Policy) => boolean,
userId?: string
userId?: string,
) {
const organizations = await this.organizationService.getAll(userId);
const filteredPolicies = policies.filter(
(p) => p.type === policyType && p.enabled && (policyFilter == null || policyFilter(p))
(p) => p.type === policyType && p.enabled && (policyFilter == null || policyFilter(p)),
);
const policySet = new Set(filteredPolicies.map((p) => p.organizationId));
@@ -291,7 +291,7 @@ export class PolicyService implements InternalPolicyServiceAbstraction {
o.status >= OrganizationUserStatusType.Accepted &&
o.usePolicies &&
policySet.has(o.id) &&
!this.isExemptFromPolicies(o, policyType)
!this.isExemptFromPolicies(o, policyType),
);
}
}