feat(fc3b): /api/credentials blueprint (CRUD + X-Extension-Key auth)

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-20 18:35:54 -04:00
parent 4a9cada8c0
commit 617aa5a90a
3 changed files with 273 additions and 0 deletions
+2
View File
@@ -19,6 +19,7 @@ def all_blueprints() -> list[Blueprint]:
from .artist import artist_bp
from .artists import artists_bp
from .attachments import attachments_bp
from .credentials import credentials_bp
from .gallery import gallery_bp
from .import_admin import import_admin_bp
from .ml_admin import ml_admin_bp
@@ -46,4 +47,5 @@ def all_blueprints() -> list[Blueprint]:
ml_admin_bp,
sources_bp,
platforms_bp,
credentials_bp,
]