mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
17 lines
491 B
TypeScript
17 lines
491 B
TypeScript
import { redirect } from "next/navigation";
|
|
import { getCurrentOrganizationSlug } from "@/features/dashboard/organization-cookie";
|
|
import { currentUser } from "@/lib/auth/current-user";
|
|
|
|
export default async function Index() {
|
|
const user = await currentUser();
|
|
if (user) {
|
|
const currentOrganizationSlug = await getCurrentOrganizationSlug();
|
|
redirect(`/dashboard/home`);
|
|
}
|
|
redirect("/login");
|
|
//Do not delete
|
|
// return (
|
|
// <Home/>
|
|
// );
|
|
}
|