From 5de8bed28f89d1932da3764df870119c68dcfbf6 Mon Sep 17 00:00:00 2001 From: Khushal P Soonderji Date: Wed, 26 Nov 2025 14:12:55 +0530 Subject: [PATCH] (20251126) ... --- backend/api/blueprints/reports/in_out_report.py | 4 ++-- backend/api/blueprints/reports/muster_roll.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/backend/api/blueprints/reports/in_out_report.py b/backend/api/blueprints/reports/in_out_report.py index 8fe7736..8cd54f6 100644 --- a/backend/api/blueprints/reports/in_out_report.py +++ b/backend/api/blueprints/reports/in_out_report.py @@ -137,8 +137,8 @@ def init(blueprint_setup_state): # @log_chain_to_mongo(attr_name = "logs_mongo") @should_not_be_under_maintenance(attr_name = "is_under_maintenance") @validate_input( - header_validator = lambda x: SimpleCosecCredentialsHeaders(**x), - data_validator = lambda x: CosecInOutReportRequestData(**x) + # header_validator = lambda x: SimpleCosecCredentialsHeaders(**x), + # data_validator = lambda x: CosecInOutReportRequestData(**x) ) @handle_cancelled_request() async def in_out_report_generate( diff --git a/backend/api/blueprints/reports/muster_roll.py b/backend/api/blueprints/reports/muster_roll.py index 8169bdf..b4e089a 100644 --- a/backend/api/blueprints/reports/muster_roll.py +++ b/backend/api/blueprints/reports/muster_roll.py @@ -149,8 +149,8 @@ async def close_browser() -> None: # @log_chain_to_mongo(attr_name = "logs_mongo") @should_not_be_under_maintenance(attr_name = "is_under_maintenance") @validate_input( - header_validator = lambda x: SimpleCosecCredentialsHeaders(**x), - data_validator = lambda x: CosecMusterRollReportRequestData(**x) + # header_validator = lambda x: SimpleCosecCredentialsHeaders(**x), + # data_validator = lambda x: CosecMusterRollReportRequestData(**x) ) @handle_cancelled_request( cleanup_coro = close_browser