From 8852ab11086246ebcb72177fb61177216338db14 Mon Sep 17 00:00:00 2001 From: giles Date: Sat, 28 Feb 2026 20:09:13 +0000 Subject: [PATCH] Add test service to OAuth allowed clients Co-Authored-By: Claude Opus 4.6 --- account/bp/auth/routes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account/bp/auth/routes.py b/account/bp/auth/routes.py index c0b73e6..a922b49 100644 --- a/account/bp/auth/routes.py +++ b/account/bp/auth/routes.py @@ -44,7 +44,7 @@ from .services import ( SESSION_USER_KEY = "uid" ACCOUNT_SESSION_KEY = "account_sid" -ALLOWED_CLIENTS = {"blog", "market", "cart", "events", "federation", "orders", "artdag", "artdag_l2"} +ALLOWED_CLIENTS = {"blog", "market", "cart", "events", "federation", "orders", "test", "artdag", "artdag_l2"} def register(url_prefix="/auth"):