Compare commits

...

1 Commits

Author SHA1 Message Date
Aiirondev_dev ad14499df0 fix of the direction for _match_mail 2026-07-28 22:43:12 +02:00
+1 -1
View File
@@ -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)