mirror of
https://github.com/bitwarden/browser
synced 2025-12-23 11:43:46 +00:00
* [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.
12 lines
254 B
TypeScript
12 lines
254 B
TypeScript
import { NgModule } from "@angular/core";
|
|
|
|
import { AuthSettingsModule } from "./settings/settings.module";
|
|
|
|
@NgModule({
|
|
imports: [AuthSettingsModule],
|
|
declarations: [],
|
|
providers: [],
|
|
exports: [AuthSettingsModule],
|
|
})
|
|
export class AuthModule {}
|