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]