2022-11-10 02:11:36 -05:00
|
|
|
import Admin from "@components/admin"
|
|
|
|
import { TOKEN_COOKIE_NAME } from "@lib/constants"
|
2022-11-11 22:17:44 -05:00
|
|
|
import { isUserAdmin } from "@lib/server/prisma"
|
|
|
|
import { getCurrentUser } from "@lib/server/session"
|
2022-11-10 02:11:36 -05:00
|
|
|
import { cookies } from "next/headers"
|
|
|
|
import { notFound } from "next/navigation"
|
|
|
|
|
|
|
|
const AdminPage = async () => {
|
2022-11-11 22:17:44 -05:00
|
|
|
const user = await getCurrentUser()
|
|
|
|
|
|
|
|
if (!user) {
|
2022-11-10 02:11:36 -05:00
|
|
|
return notFound()
|
|
|
|
}
|
|
|
|
|
2022-11-11 22:17:44 -05:00
|
|
|
if (user.role !== "admin") {
|
2022-11-10 02:11:36 -05:00
|
|
|
return notFound()
|
|
|
|
}
|
|
|
|
|
|
|
|
return <Admin />
|
|
|
|
}
|
|
|
|
|
|
|
|
export default AdminPage
|