mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-04-29 00:11:21 +00:00
9 lines
No EOL
211 B
TypeScript
9 lines
No EOL
211 B
TypeScript
import { redirect } from '@sveltejs/kit';
|
|
|
|
export const load = (async ({ locals }: { locals: App.Locals }) => {
|
|
if (!locals.pocketBase.authStore.isValid) {
|
|
throw redirect(303, '/register');
|
|
}
|
|
|
|
return {};
|
|
}) |