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))
}

View File

@@ -1,31 +0,0 @@
import { redirect } from 'next/navigation';
import { NextRequest } from 'next/server';
/**
* Catch-all Redirect Route for /epd/clients/
*
* Redirects all /epd/clients/* routes to /epd/patients/* for backward compatibility
* This ensures that old bookmarks and links continue to work after migration.
*
* Preserves query parameters (e.g., ?tab=intake&search=test)
*/
export async function GET(
request: NextRequest,
{ params }: { params: Promise<{ path: string[] }> }
) {
const { path } = await params;
const searchParams = request.nextUrl.searchParams;
// Build new path with query parameters
const newPath = `/epd/patients/${path.join('/')}`;
const newUrl = new URL(newPath, request.url);
// Preserve all query parameters
searchParams.forEach((value, key) => {
newUrl.searchParams.set(key, value);
});
redirect(newUrl.toString());
}

View File

@@ -1,10 +0,0 @@
import { redirect } from 'next/navigation';
/**
* Clients Root Redirect
* Redirects /epd/clients to /epd/patients for backward compatibility
*/
export default function ClientsRedirect() {
redirect('/epd/patients');
}

View File

@@ -20,7 +20,7 @@ export function LoginForm() {
// Redirect path based on interface preference
const getRedirectPath = () => {
return interfacePreference === 'cortex' ? '/epd/cortex' : '/epd/clients'
return interfacePreference === 'cortex' ? '/epd/cortex' : '/epd/patients'
}
const handleSubmit = async (e: React.FormEvent) => {

View File

@@ -38,7 +38,7 @@ export default function SetPasswordPage() {
}
function handleSkip() {
router.push('/epd/clients')
router.push('/epd/patients')
}
return (