Complete sermon management system with Nuxt 4, authentication, SQLite database, QR codes, and Docker deployment

This commit is contained in:
Ryderjj89
2025-09-29 18:59:31 -04:00
commit c033410c2e
25 changed files with 1510 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
export default defineEventHandler(async (event) => {
// Clear the auth cookie
deleteCookie(event, 'auth_token')
return { success: true }
})