Select Git revision
admin-settings.module.ts
-
Jan Zickermann authoredJan Zickermann authored
admin-settings.module.ts 1.46 KiB
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { TechSharedModule } from '@alfa-client/tech-shared';
import { NavigationItemComponent } from './shared/navigation-item/navigation-item.component';
import { RouterModule } from '@angular/router';
import { NavigationContainerComponent } from './navigation-container/navigation-container.component';
import { PostfachServiceProvider, SettingsServiceProvider } from './admin-settings-provider';
import { AdminTextFieldComponent } from './shared/text-editor/admin-text-field.component';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { PostfachContainerComponent } from './postfach/postfach-container/postfach-container.component';
import { PostfachFormComponent } from './postfach/postfach-container/postfach-form/postfach-form.component';
import { TextFieldComponent } from './shared/text-field/text-field.component';
@NgModule({
declarations: [
PostfachContainerComponent,
PostfachFormComponent,
NavigationItemComponent,
NavigationContainerComponent,
AdminTextFieldComponent,
TextFieldComponent,
],
imports: [CommonModule, TechSharedModule, RouterModule, ReactiveFormsModule, FormsModule],
exports: [
PostfachContainerComponent,
NavigationItemComponent,
NavigationContainerComponent,
AdminTextFieldComponent,
],
providers: [SettingsServiceProvider, PostfachServiceProvider],
})
export class AdminSettingsModule {}