feat(web): use timeline in geolocation manager (#21492)

This commit is contained in:
Johann
2025-09-10 03:26:26 +02:00
committed by GitHub
parent 5acd6b70d0
commit 7a1c45c364
20 changed files with 277 additions and 496 deletions
@@ -1,15 +1,12 @@
import { authenticate } from '$lib/utils/auth';
import { getFormatter } from '$lib/utils/i18n';
import { getQueryValue } from '$lib/utils/navigation';
import type { PageLoad } from './$types';
export const load = (async ({ url }) => {
await authenticate(url);
const partialDate = getQueryValue('date');
const $t = await getFormatter();
return {
partialDate,
meta: {
title: $t('manage_geolocation'),
},