summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pipes/global-pipes.module.ts
blob: 758a7e886ce2ceac1d1bfb3a9d1ffb32f41b1ef3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import {ContentAfterLastDotPipe} from "./contentAfterLastDot.pipe";
import {SearchFilterPipe} from "./searchFilter.pipe";
import {KeysPipe} from "./keys.pipe";
import {GroupByPipe} from "./groupBy.pipe";
import {ResourceNamePipe} from "./resource-name.pipe";
import {NgModule} from "@angular/core";
import {SafeUrlSanitizerPipe} from "./safeUrlSanitizer.pipe";

@NgModule({
    declarations: [
        ContentAfterLastDotPipe,
        GroupByPipe,
        KeysPipe,
        SafeUrlSanitizerPipe,
        SearchFilterPipe,
        ResourceNamePipe
    ],
    exports: [
        ContentAfterLastDotPipe,
        GroupByPipe,
        KeysPipe,
        SafeUrlSanitizerPipe,
        SearchFilterPipe,
        ResourceNamePipe
    ]
})

export class GlobalPipesModule {}