mirror of
https://github.com/bitwarden/browser
synced 2026-02-13 15:03:26 +00:00
14 lines
403 B
TypeScript
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 {}
|