1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 16:23:44 +00:00

[PM-4016] Address feedback on [PM-2014] (#6532)

* [PM-4016] feat: use dialog `loading` attribute

* [PM-4016] chore: move constant to service

* [PM-4016] chore: simplify paddings

* [PM-4016] chore: rename to `AuthSettingsModule`

* [PM-4016] fix: move request creation to service

* [PM-4016] feat: simplify module structure

Remove core.module and use `@Injectable({ providedIn: "root" })` instead.
This commit is contained in:
Andreas Coroiu
2023-10-11 16:09:01 +02:00
committed by GitHub
parent 524123ac01
commit 56a1229803
13 changed files with 31 additions and 42 deletions

View File

@@ -1,12 +1,11 @@
import { NgModule } from "@angular/core";
import { CoreAuthModule } from "./core";
import { SettingsModule } from "./settings/settings.module";
import { AuthSettingsModule } from "./settings/settings.module";
@NgModule({
imports: [CoreAuthModule, SettingsModule],
imports: [AuthSettingsModule],
declarations: [],
providers: [],
exports: [SettingsModule],
exports: [AuthSettingsModule],
})
export class AuthModule {}