hermes-web/app/api/settings/connections/twitch/delete/route.ts

23 lines
789 B
TypeScript
Raw Permalink Normal View History

2023-12-30 05:56:40 -05:00
import { db } from "@/lib/db"
2024-01-04 16:57:32 -05:00
import fetchUserWithImpersonation from "@/lib/fetch-user-impersonation";
2023-12-30 05:56:40 -05:00
import { NextResponse } from "next/server";
export async function POST(req: Request) {
try {
2024-01-04 16:57:32 -05:00
const user = await fetchUserWithImpersonation(req)
2023-12-30 05:56:40 -05:00
if (!user) {
2024-08-25 17:35:46 -04:00
return NextResponse.json({ message: 'Unauthorized.', error: null, value: null }, { status: 401 });
2023-12-30 05:56:40 -05:00
}
const connection = await db.twitchConnection.deleteMany({
where: {
userId: user.id
}
});
return NextResponse.json(connection);
} catch (error) {
console.log("[CONNECTION/TWITCH]", error);
2024-08-25 17:35:46 -04:00
return NextResponse.json({ message: 'Something went wrong', error: error, value: null }, { status: 500 })
2023-12-30 05:56:40 -05:00
}
}