1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 17:23:37 +00:00

refactor getOrgPolicies call

This commit is contained in:
rr-bw
2024-08-27 16:21:08 -07:00
parent 688a24bd52
commit 97f9008b60
13 changed files with 49 additions and 68 deletions

View File

@@ -1,7 +1,5 @@
import { UrlTree } from "@angular/router";
import { OrganizationInvite } from "@bitwarden/auth/common";
import { LoginService, PasswordPolicies } from "./login.service";
export class DefaultLoginService implements LoginService {
@@ -9,11 +7,7 @@ export class DefaultLoginService implements LoginService {
return null;
}
async getOrganizationInvite(): Promise<OrganizationInvite | null> {
return null;
}
async getPasswordPolicies(invite: OrganizationInvite): Promise<PasswordPolicies | null> {
async getOrgPolicies(): Promise<PasswordPolicies | null> {
return null;
}
}