Move auth server from federation to account
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 42s

Account is now the OAuth authorization server with magic link login,
OAuth2 authorize endpoint, SSO logout, and session management.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
giles
2026-02-23 12:00:20 +00:00
parent 19189e6655
commit 2178607484
33 changed files with 723 additions and 2 deletions

0
cart/__init__.py Normal file
View File

2
cart/models/__init__.py Normal file
View File

@@ -0,0 +1,2 @@
from .order import Order, OrderItem
from .page_config import PageConfig

1
cart/models/order.py Normal file
View File

@@ -0,0 +1 @@
from shared.models.order import Order, OrderItem # noqa: F401

View File

@@ -0,0 +1 @@
from shared.models.page_config import PageConfig # noqa: F401