From ad14499df06fac8bc2869fda8487d6d0f7c4786e Mon Sep 17 00:00:00 2001 From: AIIrondev Date: Tue, 28 Jul 2026 22:43:12 +0200 Subject: [PATCH] fix of the direction for _match_mail --- Web/modules/database/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Web/modules/database/settings.py b/Web/modules/database/settings.py index 3dfe337..4913305 100644 --- a/Web/modules/database/settings.py +++ b/Web/modules/database/settings.py @@ -300,7 +300,7 @@ def _match_student_cards(path): def _match_mail(path): if not path: return False - return path.startswith(('/')) + return path.startswith(('/configure')) # Register core modules into the pipeline MODULES.register('inventory', INVENTORY_MODULE_ENABLED, _match_inventory)