Newer
Older
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { TechSharedModule } from '@alfa-client/tech-shared';

Jan Zickermann
committed
import { NavigationItemComponent } from './shared/navigation-item/navigation-item.component';
import { RouterModule } from '@angular/router';
import { 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';
import { OeidContainerComponent } from './oeid/oeid-container/oeid-container.component';
import { OeidFormComponent } from './oeid/oeid-container/oeid-form/oeid-form.component';
import { PrimaryButtonComponent } from './shared/primary-button/primary-button.component';
import { SecondaryButtonComponent } from './shared/secondary-button/secondary-button.component';
import { OeidListComponent } from './oeid/oeid-container/oeid-list/oeid-list.component';
import { PostfachNavigationItemComponent } from './postfach/postfach-navigation-item/postfach-navigation-item.component';
import { SettingsService } from './admin-settings.service';
import { PostfachService } from './postfach/postfach.service';
import { ConfigurationService } from './configuration/configuration.service';
declarations: [
PostfachContainerComponent,
PostfachFormComponent,
NavigationItemComponent,
TextFieldComponent,
PostfachNavigationItemComponent,
OeidContainerComponent,
OeidFormComponent,
PrimaryButtonComponent,
SecondaryButtonComponent,
imports: [CommonModule, TechSharedModule, RouterModule, ReactiveFormsModule],
exports: [PostfachContainerComponent, OeidContainerComponent, NavigationItemComponent],
providers: [ConfigurationService, SettingsService, PostfachService],

Jan Zickermann
committed
export class AdminSettingsModule {}