Remove blog auth blueprint — login/account now in federation
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 56s

All auth routes (login, magic link, account, newsletters,
widget pages, logout) are handled by the federation app.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
giles
2026-02-23 09:09:21 +00:00
parent 85fd9d9f60
commit fb1cef6cb5
6 changed files with 0 additions and 660 deletions

3
app.py
View File

@@ -11,7 +11,6 @@ from shared.config import config
from shared.models import KV
from bp import (
register_auth_bp,
register_blog_bp,
register_admin,
register_menu_items,
@@ -63,8 +62,6 @@ def create_app() -> "Quart":
])
# --- blueprints ---
app.register_blueprint(register_auth_bp())
app.register_blueprint(
register_blog_bp(
url_prefix=config()["blog_root"],