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

cleanup & comments

This commit is contained in:
rr-bw
2024-09-14 10:59:43 -07:00
parent e076e94c08
commit 66072f66e8
5 changed files with 9 additions and 18 deletions

View File

@@ -1,16 +1,8 @@
import { UrlTree } from "@angular/router";
import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service";
import { ToastService } from "@bitwarden/components";
import { LoginService, PasswordPolicies } from "./login.service";
export class DefaultLoginService implements LoginService {
constructor(
protected i18nService: I18nService,
protected toastService: ToastService,
) {}
async launchSsoBrowserWindow(email: string): Promise<void | null> {
return null;
}