2021-01-13 15:49:58 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { FilterPipe } from './filter.pipe';
|
2021-08-10 16:24:14 +01:00
|
|
|
import { SearchDocumentPipe } from './search-document.pipe';
|
2021-08-18 12:05:27 +01:00
|
|
|
import { CustomTaskPipe } from './custom-task.pipe';
|
2021-08-20 12:02:27 +01:00
|
|
|
import { EventPipe } from './event.pipe';
|
2021-08-23 11:30:42 +01:00
|
|
|
import { PublicationPipe } from './publication.pipe';
|
2021-08-26 13:48:29 +01:00
|
|
|
import { ExpedienteTaskPipe } from './expediente-task.pipe';
|
2021-09-03 12:19:21 +01:00
|
|
|
import { ParticipantsPipe } from './participants.pipe';
|
2022-03-14 08:09:33 +01:00
|
|
|
import { SafehtmlPipe } from './safehtml.pipe';
|
2023-04-13 15:44:16 +01:00
|
|
|
import { EventoApprovePipe } from './evento-approve.pipe';
|
2021-01-13 15:49:58 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
@NgModule({
|
2023-04-13 15:44:16 +01:00
|
|
|
declarations: [FilterPipe, SearchDocumentPipe, CustomTaskPipe, EventPipe, PublicationPipe, ExpedienteTaskPipe, ParticipantsPipe, SafehtmlPipe, EventoApprovePipe],
|
2022-03-14 08:09:33 +01:00
|
|
|
exports: [FilterPipe, SafehtmlPipe],
|
2021-01-13 15:49:58 +01:00
|
|
|
imports: []
|
|
|
|
|
})
|
|
|
|
|
export class PipesModule { }
|