19 lines
453 B
TypeScript
19 lines
453 B
TypeScript
// SPDX-FileCopyrightText: 2023 Marlon W (Mawoka)
|
|
//
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
import { error } from '@sveltejs/kit';
|
|
import type { PageServerLoad } from './$types';
|
|
|
|
export const load = (({ url }) => {
|
|
const code = url.searchParams.get('code');
|
|
const id = url.searchParams.get('id');
|
|
if (!id || !code) {
|
|
error(404, JSON.stringify({ detail: 'id and/or code are/is missing' }));
|
|
}
|
|
return {
|
|
id,
|
|
code
|
|
};
|
|
}) satisfies PageServerLoad;
|