mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-01-31 17:03:38 +00:00
41 lines
866 B
TypeScript
41 lines
866 B
TypeScript
import { auth } from '@clerk/nextjs/server';
|
|
import { NextResponse } from 'next/server';
|
|
|
|
import { db } from '@/lib/db';
|
|
|
|
export async function GET(
|
|
req: Request,
|
|
props: { params: Promise<{ cardId: string }> }
|
|
) {
|
|
const params = await props.params;
|
|
try {
|
|
const { orgId, userId } = await auth();
|
|
|
|
if (!orgId || !userId)
|
|
return new NextResponse(JSON.stringify({ error: 'Unauthorized' }), {
|
|
status: 401,
|
|
});
|
|
|
|
const card = await db.card.findUnique({
|
|
where: {
|
|
id: params.cardId,
|
|
list: {
|
|
board: {
|
|
orgId,
|
|
},
|
|
},
|
|
},
|
|
include: {
|
|
list: {
|
|
select: {
|
|
title: true,
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
return NextResponse.json(card);
|
|
} catch (error) {
|
|
return new NextResponse(JSON.stringify(error), { status: 500 });
|
|
}
|
|
}
|