import {prisma} from "@/prisma"; import {PageParams} from "@/types/next"; import {Page, PageActions, PageContent, PageDescription, PageHeader, PageTitle} from "@/features/layout/page"; import {requiredCurrentUser} from "@/auth/current-user"; import {SettingsTabs} from "@/components/wrappers/dashboard/settings/SettingsTabs/SettingsTabs"; import {getCurrentOrganizationId} from "@/features/dashboard/organization-cookie"; import {Button} from "@/components/ui/button"; import {ButtonWithConfirm} from "@/components/wrappers/common/button/button-with-confirm"; export default async function RoutePage(props: PageParams<{}>) { const user = await requiredCurrentUser() const currentOrganizationId = await getCurrentOrganizationId() const users = await prisma.user.findMany({ where: { organizations: { some: { organizationId: currentOrganizationId }, }, deleted: {not: true}, } }) console.log(users) const settings = await prisma.settings.findUnique({ where: { name: "system" } }) return ( Settings {/**/} Manage your organization settings. ) }