From 62eac7cffd3b914c52568e186c5ddcadb0904be7 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Thu, 14 May 2026 12:11:10 -0400 Subject: [PATCH] fix(fc2a): register settings_bp in all_blueprints Missed in the Task 11 commit because of a stale-cache Edit failure. Routes /api/settings/import and /api/system/stats are now actually mounted. Co-Authored-By: Claude Opus 4.7 (1M context) --- backend/app/api/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/app/api/__init__.py b/backend/app/api/__init__.py index 600fc70..dfc24af 100644 --- a/backend/app/api/__init__.py +++ b/backend/app/api/__init__.py @@ -15,5 +15,6 @@ api_bp.add_url_rule("/health", view_func=health.get_health, methods=["GET"]) def all_blueprints() -> list[Blueprint]: from .gallery import gallery_bp + from .settings import settings_bp from .tags import tags_bp - return [api_bp, gallery_bp, tags_bp] + return [api_bp, gallery_bp, tags_bp, settings_bp]