mirror of
https://github.com/immich-app/immich.git
synced 2025-12-28 01:11:47 +03:00
12 lines
230 B
TypeScript
12 lines
230 B
TypeScript
import { authenticate } from '$lib/utils/auth';
|
|
import type { PageLoad } from './$types';
|
|
|
|
export const load = (async () => {
|
|
await authenticate();
|
|
return {
|
|
meta: {
|
|
title: 'Trash',
|
|
},
|
|
};
|
|
}) satisfies PageLoad;
|