Mar 04 2026: Implement customer's view functionalities - Phase 5

This commit is contained in:
2026-03-04 13:35:12 -05:00
parent 59f46f2110
commit 736cb04bcb
7 changed files with 763 additions and 0 deletions
+2
View File
@@ -105,6 +105,7 @@ def create_app(config_name='default'):
from app.routes import notifications # Notification system
from app.routes import audit # Audit Trail
from app.routes import projects # Phase 1/2 — Project management
from app.routes import customers # Phase 5 — Customer management
app.register_blueprint(auth.bp)
app.register_blueprint(dashboard.bp)
@@ -116,6 +117,7 @@ def create_app(config_name='default'):
app.register_blueprint(notifications.bp)
app.register_blueprint(audit.bp)
app.register_blueprint(projects.bp)
app.register_blueprint(customers.bp)
# ── Error handler: 413 Request Entity Too Large ───────────────────────
# Nginx can return 413 before Flask sees the request; this handler covers