This commit is contained in:
2026-01-04 17:24:47 +09:00
parent d1db71de61
commit a87c11597a
59 changed files with 15057 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
/**
* 로그아웃
* POST /api/auth/logout
*/
export default defineEventHandler(async (event) => {
deleteCookie(event, 'user_id')
return { success: true }
})