mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
11 lines
237 B
TypeScript
11 lines
237 B
TypeScript
import { authenticate } from '$lib/utils/auth';
|
|
import type { PageLoad } from './$types';
|
|
|
|
export const load = (async () => {
|
|
await authenticate();
|
|
return {
|
|
meta: {
|
|
title: 'Shared Links',
|
|
},
|
|
};
|
|
}) satisfies PageLoad;
|