mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-04-27 23:41:21 +00:00
6 lines
176 B
TypeScript
6 lines
176 B
TypeScript
import { redirect } from '@sveltejs/kit';
|
|
|
|
export const GET = ({ locals }: { locals: App.Locals }) => {
|
|
locals.pocketBase.authStore.clear();
|
|
throw redirect(303, '/auth');
|
|
};
|