Files
immich/web/src/routes/(user)/search/+page.ts
T
2024-02-21 09:50:50 -06:00

12 lines
231 B
TypeScript

import { authenticate } from '$lib/utils/auth';
import type { PageLoad } from './$types';
export const load = (async () => {
await authenticate();
return {
meta: {
title: 'Search',
},
};
}) satisfies PageLoad;