1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-06 10:33:57 +00:00

setup web-login.service.ts

This commit is contained in:
rr-bw
2024-08-22 14:03:07 -07:00
parent 2b90cbb3e5
commit d4213fba2e
9 changed files with 28 additions and 1 deletions

View File

@@ -1,3 +1,4 @@
export * from "./login";
export * from "./webauthn-login";
export * from "./set-password-jit";
export * from "./registration";

View File

@@ -0,0 +1 @@
export * from "./web-login.service";

View File

@@ -0,0 +1,3 @@
import { DefaultLoginService, LoginService } from "@bitwarden/auth/angular";
export class WebLoginService extends DefaultLoginService implements LoginService {}