first commit
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
// GET /api/users/csr — real users from the database (client-side data binding).
|
||||
import { getDb } from "@wrnexus/db";
|
||||
import { ListUsers } from "../../db/queries.gen.ts";
|
||||
|
||||
export const GET = async () => {
|
||||
const users = await ListUsers(getDb());
|
||||
return Response.json({ users });
|
||||
};
|
||||
@@ -0,0 +1,8 @@
|
||||
// GET /api/users/ssr — real users from the database (server-side data binding).
|
||||
import { getDb } from "@wrnexus/db";
|
||||
import { ListUsers } from "../../db/queries.gen.ts";
|
||||
|
||||
export const GET = async () => {
|
||||
const users = await ListUsers(getDb());
|
||||
return Response.json({ users });
|
||||
};
|
||||
Reference in New Issue
Block a user