From 35487ad033cb27d59ace9c4bd67df65f87271a2f Mon Sep 17 00:00:00 2001 From: SepehrYahyaee <7heycallmegray@gmail.com> Date: Wed, 20 May 2026 15:27:44 +0330 Subject: [PATCH] Deactivated Valiation Whitelist for now --- src/app.module.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/app.module.ts b/src/app.module.ts index 6389d4f..c99acc1 100644 --- a/src/app.module.ts +++ b/src/app.module.ts @@ -77,14 +77,14 @@ dotenv.config({ path: `.${process.env.NODE_ENV}.env` }); provide: APP_INTERCEPTOR, useClass: UnicodeDigitsNormalizeInterceptor, }, - { - provide: APP_PIPE, - useValue: new ValidationPipe({ - transform: true, - whitelist: true, - forbidNonWhitelisted: false, - }), - }, + // { + // provide: APP_PIPE, + // useValue: new ValidationPipe({ + // transform: true, + // whitelist: true, + // forbidNonWhitelisted: false, + // }), + // }, ], }) export class AppModule {}