mirror of
https://github.com/bitwarden/browser.git
synced 2025-01-22 21:21:35 +01:00
[PM-2014] feat: create new settings module
This commit is contained in:
parent
b3db7a0195
commit
991d1907c5
@ -1,14 +1,12 @@
|
||||
import { NgModule } from "@angular/core";
|
||||
|
||||
import { CoreAuthModule } from "./core";
|
||||
import { WebauthnLoginSettingsModule } from "./settings/webauthn-login-settings";
|
||||
import { SettingsModule } from "./settings/settings.module";
|
||||
|
||||
@NgModule({
|
||||
imports: [CoreAuthModule, WebauthnLoginSettingsModule],
|
||||
imports: [CoreAuthModule, SettingsModule],
|
||||
declarations: [],
|
||||
providers: [],
|
||||
exports: [
|
||||
WebauthnLoginSettingsModule, // TODO: Remove when `app/settings/change-password.component.ts` has been moved to `app/auth/settings/.`
|
||||
],
|
||||
exports: [SettingsModule],
|
||||
})
|
||||
export class AuthModule {}
|
||||
|
13
apps/web/src/app/auth/settings/settings.module.ts
Normal file
13
apps/web/src/app/auth/settings/settings.module.ts
Normal file
@ -0,0 +1,13 @@
|
||||
import { NgModule } from "@angular/core";
|
||||
|
||||
import { SharedModule } from "../../shared";
|
||||
|
||||
import { WebauthnLoginSettingsModule } from "./webauthn-login-settings";
|
||||
|
||||
@NgModule({
|
||||
imports: [SharedModule, WebauthnLoginSettingsModule],
|
||||
declarations: [],
|
||||
providers: [],
|
||||
exports: [WebauthnLoginSettingsModule],
|
||||
})
|
||||
export class SettingsModule {}
|
Loading…
Reference in New Issue
Block a user