Skip to content
Snippets Groups Projects
Select Git revision
  • 1145afaf500e0ccf47167548bde95526dbdd7a90
  • main default protected
  • OZG-7970-AlfaCodeFlow
  • OZG-8279-restore-missing-tooltips
  • OZG-8073-date-component
  • OZG-7856_schadcode_scanner
  • OZG-7985-Statistik-Datenfreigabe
  • OZG-8305-Create-webpack-sbom
  • tooltip-improvements
  • ods-remove-class-inputs
  • release-info
  • release-administration
  • release
  • OZG-7714-UpgradeKeycloakDependencyTo25
  • OZG-8086-Admin-Datenanfrage-erstellen
  • OZG-8086-Datenanfrage-Umbenennung
  • mongodb-7-0-16-e2e
  • OZG-6220-Bescheid-speichern-ohne-Postfach
  • OZG-7922-KeycloakOperatorExceptions
  • OZG-8142-poc-cards
  • OZG-8086-E2E
  • 1.11.0-info
  • 1.11.0-administration
  • 2.26.0-alfa
  • 1.10.0-info
  • 1.10.0-administration
  • 2.25.0-alfa
  • 1.9.0-info
  • 1.9.0-administration
  • 2.24.0-alfa
  • 1.8.0-info
  • 1.8.0-administration
  • 2.23.0-alfa
  • 1.7.0-info
  • 1.7.0-administration
  • 2.22.0-alfa
  • 1.6.0-info
  • 1.6.0-administration
  • 2.21.0-alfa
  • 1.5.0-info
  • 1.5.0-administration
41 results

admin-settings.module.ts

Blame
  • 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 {}