feat(aasa): /auth/* in Universal-Link-Paths
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) <noreply@anthropic.com>
This commit is contained in:
parent
4d905bb4cd
commit
8c7c8c9c98
1 changed files with 4 additions and 1 deletions
|
|
@ -34,7 +34,10 @@ export const GET: RequestHandler = async () => {
|
||||||
details: [
|
details: [
|
||||||
{
|
{
|
||||||
appID: `${teamId}.${bundleId}`,
|
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/*'],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue