PraxaLing / app /api /auth /logout /route.ts
Reubencf's picture
Deploy PraxaLing: component refactor, bug fixes, unified neo-brutal design, Qwen3.5 everywhere
2992997
Raw
History Blame Contribute Delete
223 Bytes
import { NextResponse } from "next/server";
import { clearSessionCookie } from "@/lib/auth/session";
export async function POST() {
const res = NextResponse.json({ ok: true });
clearSessionCookie(res);
return res;
}