Removed Liveblocks and Updated Clerk Components

This commit is contained in:
Ahmad 2024-12-23 13:34:01 -05:00
parent 19c1eaf60f
commit a25d2bf951
No known key found for this signature in database
GPG key ID: 8FD8A93530D182BF
6 changed files with 2 additions and 140 deletions

View file

@ -1,28 +0,0 @@
/* import { Liveblocks } from '@liveblocks/node';
import { useUser } from '@clerk/nextjs';
import { auth } from '@clerk/nextjs/server';
const liveblocks = new Liveblocks({
secret: process.env.LIVEBLOCKS_SECRET_DEV_API_KEY!,
}); */
export async function POST(req: Request) {
/* const { user } = useUser();
const { orgId } = auth();
if (!orgId || !user) return new Response('Unauthorized', { status: 401 });
// Start an auth session inside your endpoint
const session = liveblocks.prepareSession(user.id);
// Implement your own security, and give the user access to the room
const { room } = await req.json();
if (room) {
session.allow(room, session.FULL_ACCESS);
}
// Authorize the user and return the result
const { status, body } = await session.authorize();
return new Response(body, { status }); */
return new Response('Not implemented', { status: 501 });
}