Jul 17 - Fill the gaps between Single-tenant mode and Multi-tenant mode - MT5

This commit is contained in:
2026-07-17 12:30:04 -04:00
parent d44d761706
commit 8d9730e3df
5 changed files with 240 additions and 0 deletions
+2
View File
@@ -266,6 +266,7 @@ def create_app(config_name='default'):
from app.api.notifications import bp as _api_notifications_bp
from app.api.stats import bp as _api_stats_bp
from app.api.comments import bp as _api_comments_bp
from app.api.scheduled import bp as _api_scheduled_bp
csrf.exempt(_api_auth_bp)
csrf.exempt(_api_facilities_bp)
csrf.exempt(_api_templates_bp)
@@ -275,6 +276,7 @@ def create_app(config_name='default'):
csrf.exempt(_api_notifications_bp)
csrf.exempt(_api_stats_bp)
csrf.exempt(_api_comments_bp)
csrf.exempt(_api_scheduled_bp)
register_api(app)
# ── Security response headers ─────────────────────────────────────────