dptxa-proxy / src /pages /api /auth /logout.js
TXAVLOG
Deploy DPTXA to Hugging Face Spaces
4bea261
Raw
History Blame Contribute Delete
254 Bytes
export const POST = async ({ cookies }) => {
cookies.delete('auth_token', { path: '/' });
return new Response(JSON.stringify({ message: 'Đăng xuất thành công!' }), {
status: 200,
headers: { 'Content-Type': 'application/json' }
});
};