1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-13 15:03:26 +00:00
Files
browser/apps/web/src/app/auth/auth.module.ts
2023-05-26 14:30:23 +02:00

14 lines
403 B
TypeScript

import { NgModule } from "@angular/core";
import { WebauthnLoginSettingsModule } from "./settings/webauthn-login-settings";
@NgModule({
imports: [WebauthnLoginSettingsModule],
declarations: [],
providers: [],
exports: [
WebauthnLoginSettingsModule, // TODO: Remove when `app/settings/change-password.component.ts` has been moved to `app/auth/settings/.`
],
})
export class AuthModule {}