From 46fc6dcf048d0e9b9fdc255472f30070f39c8bd0 Mon Sep 17 00:00:00 2001 From: "IGNY8 VPS (Salman)" Date: Sun, 7 Dec 2025 05:10:07 +0000 Subject: [PATCH] sadasd --- backend/igny8_core/api/schema_extensions.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/backend/igny8_core/api/schema_extensions.py b/backend/igny8_core/api/schema_extensions.py index 67c8c81b..33650b88 100644 --- a/backend/igny8_core/api/schema_extensions.py +++ b/backend/igny8_core/api/schema_extensions.py @@ -34,6 +34,11 @@ def postprocess_schema_filter_tags(result, generator, request, public): for path, methods in result['paths'].items(): for method, operation in methods.items(): if isinstance(operation, dict) and 'tags' in operation: + # Explicitly exclude system webhook from tagging/docs grouping + if '/system/webhook' in path: + operation['tags'] = [] + continue + # Keep only explicit tags from the operation filtered_tags = [ tag for tag in operation['tags']