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:
@@ -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 {}
|
||||
|
||||
Reference in New Issue
Block a user