Jul 8 - Update scheduled inspection

This commit is contained in:
2026-07-08 15:46:14 -04:00
parent f08ca997d7
commit 4d661e9776
15 changed files with 795 additions and 6 deletions
+2
View File
@@ -177,6 +177,7 @@ def create_app(config_name='default'):
from app.routes import broadcast # Admin broadcast notifications
from app.routes import devices # Admin device registry
from app.routes import public # Public facility QR pages (no login)
from app.routes import scheduled_inspections # Planned/recurring inspections
app.register_blueprint(auth.bp)
app.register_blueprint(dashboard.bp)
@@ -194,6 +195,7 @@ def create_app(config_name='default'):
app.register_blueprint(broadcast.bp)
app.register_blueprint(devices.bp)
app.register_blueprint(public.bp)
app.register_blueprint(scheduled_inspections.bp)
# ── Mobile API (Phase 7 / Phase A / Phase B / Phase C) ───────────────────
# The /api/v1 blueprint group uses JWT Bearer tokens — no CSRF cookies needed.