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

add jsdocs to LoginComponentService

This commit is contained in:
rr-bw
2024-09-14 13:47:10 -07:00
parent 0bb18eb36c
commit 6bbbfcd145
2 changed files with 30 additions and 10 deletions

View File

@@ -19,21 +19,18 @@ export class DefaultLoginComponentService implements LoginComponentService {
protected ssoLoginService: SsoLoginServiceAbstraction,
) {}
// Web
setPreviousUrl(route: UrlTree): void | null {
return null;
}
async getOrgPolicies(): Promise<PasswordPolicies | null> {
return null;
}
// Web/Browser
setPreviousUrl(route: UrlTree): void | null {
return null;
}
getShowPasswordlessFlag(): boolean {
return null;
}
// Used on Browser and overriden on Desktop
async launchSsoBrowserWindow(
email: string,
clientId: "browser" | "desktop",