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

implement web onInit

This commit is contained in:
rr-bw
2024-08-23 10:27:11 -07:00
parent d4213fba2e
commit d917426afa
5 changed files with 79 additions and 6 deletions

View File

@@ -1,3 +1,13 @@
import { UrlTree } from "@angular/router";
import { LoginService } from "./login.service";
export class DefaultLoginService implements LoginService {}
export class DefaultLoginService implements LoginService {
setPreviousUrl(route: UrlTree): void | null {
return null;
}
async handleExistingOrgInvite(): Promise<void | null> {
return null;
}
}