chore(strip): verwijder /epd/clients redirect-laag

Alle verwijzingen (middleware, login, auth-callback, set-password,
Cortex context-bar) wijzen nu rechtstreeks naar /epd/patients; de
backwards-compat redirects zijn daarmee overbodig.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
colinislit
2026-07-14 22:50:52 +02:00
parent 38dd7c1f8a
commit caeba77bf8
7 changed files with 5 additions and 46 deletions

View File

@@ -110,7 +110,7 @@ export async function GET(request: NextRequest) {
return NextResponse.redirect(new URL('/set-password', request.url))
}
// Redirect to the specified next URL or default to /epd/clients
// Redirect to the specified next URL or default to /epd/patients
// This includes: password signups, confirmed email users, and returning users
return NextResponse.redirect(new URL(next, request.url))
}