2020-02-11 15:56:20 +01:00
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
import {FormsModule} from '@angular/forms';
|
|
|
|
import {IsRouteEnabled} from '../error/isRouteEnabled.guard';
|
|
|
|
import {NewSearchPageModule} from "./searchUtils/newSearchPage.module";
|
|
|
|
import {OrganizationsServiceModule} from "../services/organizationsService.module";
|
|
|
|
import {SearchOrganizationsComponent} from "./searchOrganizations.component";
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonModule, FormsModule,
|
|
|
|
OrganizationsServiceModule,
|
|
|
|
NewSearchPageModule
|
|
|
|
|
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
SearchOrganizationsComponent
|
|
|
|
],
|
2020-11-11 15:43:13 +01:00
|
|
|
providers: [],
|
2020-02-11 15:56:20 +01:00
|
|
|
exports: [
|
|
|
|
SearchOrganizationsComponent
|
|
|
|
]
|
|
|
|
})
|
|
|
|
|
|
|
|
export class SearchOrganizationsModule { }
|