diff --git a/src/modules/event/event.controller.ts b/src/modules/event/event.controller.ts index a460987..4d38ad5 100644 --- a/src/modules/event/event.controller.ts +++ b/src/modules/event/event.controller.ts @@ -48,7 +48,7 @@ export class EventController { constructor( private readonly eventService: EventService, private readonly configService: ConfigService, - ) { } + ) {} @UseFilters(new AllExceptionsFilter(API_ID.CREATE_EVENT)) @Post('/create') @@ -125,7 +125,7 @@ export class EventController { @Param('id') id: string, @Body( new ValidationPipe({ transform: true }), - // new DateValidationPipe(), + new DateValidationPipe(), // new RegistrationDateValidationPipe(), // new RecurringEndDateValidationPipe(), )