mirror of
https://github.com/Drop-OSS/drop.git
synced 2026-07-26 09:44:40 +10:00
6 lines
138 B
TypeScript
6 lines
138 B
TypeScript
export default defineEventHandler(async (h3) => {
|
|
await h3.context.session.clearSession(h3);
|
|
|
|
return sendRedirect(h3, "/signin");
|
|
});
|