Updated API Route

This commit is contained in:
Ahmad 2024-03-22 17:20:15 -04:00
parent 73f86f602f
commit 291dfb079f
No known key found for this signature in database
GPG key ID: 8FD8A93530D182BF

View file

@ -4,10 +4,10 @@ import { auth } from '@clerk/nextjs/server';
const liveblocks = new Liveblocks({ const liveblocks = new Liveblocks({
secret: process.env.LIVEBLOCKS_SECRET_DEV_API_KEY!, secret: process.env.LIVEBLOCKS_SECRET_DEV_API_KEY!,
}); }); */
export async function POST(req: Request) { export async function POST(req: Request) {
const { user } = useUser(); /* const { user } = useUser();
const { orgId } = auth(); const { orgId } = auth();
if (!orgId || !user) return new Response('Unauthorized', { status: 401 }); if (!orgId || !user) return new Response('Unauthorized', { status: 401 });
@ -23,5 +23,6 @@ export async function POST(req: Request) {
// Authorize the user and return the result // Authorize the user and return the result
const { status, body } = await session.authorize(); const { status, body } = await session.authorize();
return new Response(body, { status }); return new Response(body, { status }); */
} */ return new Response('Not implemented', { status: 501 });
}