807bdfeda9
Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
15 lines
324 B
TypeScript
15 lines
324 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, '/favorites');
|
|
}
|
|
};
|