Sync Integ to Master
[sdc.git] / catalog-ui / src / app / ng2 / pipes / global-pipes.module.ts
1 import {ContentAfterLastDotPipe} from "./contentAfterLastDot.pipe";
2 import {SearchFilterPipe} from "./searchFilter.pipe";
3 import {KeysPipe} from "./keys.pipe";
4 import {GroupByPipe} from "./groupBy.pipe";
5 import {NgModule} from "@angular/core";
6 import {SafeUrlSanitizerPipe} from "./safeUrlSanitizer.pipe";
7
8 @NgModule({
9     declarations: [
10         ContentAfterLastDotPipe,
11         GroupByPipe,
12         KeysPipe,
13         SearchFilterPipe,
14         SafeUrlSanitizerPipe
15     ],
16     exports: [
17         ContentAfterLastDotPipe,
18         GroupByPipe,
19         KeysPipe,
20         SearchFilterPipe,
21         SafeUrlSanitizerPipe
22     ]
23 })
24
25 export class GlobalPipesModule {}