Add CRUD for other entities
This commit is contained in:
parent
f87bcc43a5
commit
a3e8b89128
64 changed files with 949 additions and 62 deletions
|
|
@ -0,0 +1,11 @@
|
|||
import { WebhooksList } from "./_components/WebhooksList";
|
||||
import { db } from "@/app/_lib/database";
|
||||
|
||||
export const dynamic = "force-dynamic";
|
||||
|
||||
export default async function Page() {
|
||||
const rows = await db.selectFrom("Webhook").selectAll().execute();
|
||||
console.log(rows);
|
||||
|
||||
return <WebhooksList rows={rows} />;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue