12 lines
284 B
TypeScript
12 lines
284 B
TypeScript
import { MOCK_SESSION_COOKIE_VALUE } from "./mock-auth";
|
|
|
|
export function shouldRedirectDashboardRequest(
|
|
pathname: string,
|
|
sessionCookieValue: string | undefined,
|
|
) {
|
|
return (
|
|
pathname.startsWith("/dashboard") &&
|
|
sessionCookieValue !== MOCK_SESSION_COOKIE_VALUE
|
|
);
|
|
}
|