mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-12-08 20:29:05 +00:00
15 lines
321 B
TypeScript
15 lines
321 B
TypeScript
import { redirect } from '@sveltejs/kit';
|
|
export const prerender = false;
|
|
|
|
import type { PageServerLoad } from './$types';
|
|
|
|
export const load: PageServerLoad = async ({ parent }) => {
|
|
const { user } = await parent();
|
|
|
|
if (!user) {
|
|
throw redirect(302, '/auth/login');
|
|
} else {
|
|
throw redirect(302, '/photos');
|
|
}
|
|
};
|