19 lines
454 B
TypeScript
19 lines
454 B
TypeScript
import type { NextPageContext } from "next";
|
|
|
|
import { getSession } from "@lib/auth";
|
|
|
|
function RedirectPage() {
|
|
return;
|
|
}
|
|
|
|
export async function getServerSideProps(context: NextPageContext) {
|
|
const session = await getSession(context);
|
|
if (!session?.user?.id) {
|
|
return { redirect: { permanent: false, destination: "/auth/login" } };
|
|
}
|
|
|
|
return { redirect: { permanent: false, destination: "/event-types" } };
|
|
}
|
|
|
|
export default RedirectPage;
|