From ab7ca0ef58a33d0c98f0407baf4823772d09a570 Mon Sep 17 00:00:00 2001 From: hahaqwq <68942049+hahaQWQ@users.noreply.github.com> Date: Thu, 14 May 2026 16:12:30 +0800 Subject: [PATCH] feat(auth): add new redirect URI for deep linking in trusted client (#1796) --- apps/server/src/libs/auth.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/server/src/libs/auth.ts b/apps/server/src/libs/auth.ts index f1dd32839..85ef5a986 100644 --- a/apps/server/src/libs/auth.ts +++ b/apps/server/src/libs/auth.ts @@ -173,6 +173,7 @@ function buildTrustedClientSeeds(env: Env): TrustedClientSeed[] { public: true, redirectUris: [ 'capacitor://localhost/auth/callback', + 'ai.moeru.airi-pocket://links/auth/callback', ], scopes: [...OIDC_SCOPES], grantTypes: [...OIDC_GRANT_TYPES],