27 lines
792 B
TypeScript
27 lines
792 B
TypeScript
|
import {NgModule} from '@angular/core';
|
||
|
import {CommonModule} from '@angular/common';
|
||
|
import {FormsModule} from '@angular/forms';
|
||
|
import {FreeGuard} from '../login/freeGuard.guard';
|
||
|
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
|
||
|
],
|
||
|
providers: [FreeGuard, IsRouteEnabled],
|
||
|
exports: [
|
||
|
SearchOrganizationsComponent
|
||
|
]
|
||
|
})
|
||
|
|
||
|
export class SearchOrganizationsModule { }
|