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
+4
View File
@@ -50,6 +50,10 @@ def register_api(app):
from app.api.comments import bp as comments_bp
api_bp.register_blueprint(comments_bp)
# MT-5: Planned inspection assignments (plan-mode schedules)
from app.api.scheduled import bp as scheduled_bp
api_bp.register_blueprint(scheduled_bp)
# NOTE: device registration lives on the auth blueprint
# (POST /api/v1/devices/register in app/api/auth.py) and writes to the
# canonical api_device_tokens table (model DeviceToken). A former duplicate