From 8c7c8c9c98c760055e01fd75d59ce36bc76cdc7b Mon Sep 17 00:00:00 2001 From: Till JS Date: Wed, 13 May 2026 21:16:58 +0200 Subject: [PATCH] feat(aasa): /auth/* in Universal-Link-Paths MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reset- und Verify-Mails aus mana-auth zeigen jetzt direkt auf cardecky.mana.how/auth/reset?token=… — damit der iOS-Universal-Link greift, muss /auth/* in der AASA-Paths-Liste sein. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.7 (1M context) --- .../routes/.well-known/apple-app-site-association/+server.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/web/src/routes/.well-known/apple-app-site-association/+server.ts b/apps/web/src/routes/.well-known/apple-app-site-association/+server.ts index 1adf4cf..98b5039 100644 --- a/apps/web/src/routes/.well-known/apple-app-site-association/+server.ts +++ b/apps/web/src/routes/.well-known/apple-app-site-association/+server.ts @@ -34,7 +34,10 @@ export const GET: RequestHandler = async () => { details: [ { appID: `${teamId}.${bundleId}`, - paths: ['/d/*', '/u/*'], + // `/d/*` Deck-Slugs, `/u/*` User-Profile, `/auth/*` für + // Reset-/Verify-Mail-Klicks von mana-auth — der Mail-Link + // öffnet damit direkt die App via Universal Link. + paths: ['/d/*', '/u/*', '/auth/*'], }, ], },