mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-10-29 17:40:28 +00:00
22 lines
377 B
TypeScript
22 lines
377 B
TypeScript
import { redirect } from '@sveltejs/kit';
|
|
import type { PageServerLoad } from './$types';
|
|
|
|
export const load: PageServerLoad = async ({ parent }) => {
|
|
try {
|
|
const { user } = await parent();
|
|
|
|
if (!user) {
|
|
throw Error('User is not logged in');
|
|
}
|
|
|
|
return {
|
|
user,
|
|
meta: {
|
|
title: 'Settings'
|
|
}
|
|
};
|
|
} catch (e) {
|
|
throw redirect(302, '/auth/login');
|
|
}
|
|
};
|