blob: b09d4e9843394482c1562572dd0558e425d2d0a1 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
import { getEvents, getGroupEvents } from '$lib/Database/Supabase/events';
export const GET = async ({ url }) =>
Response.json(
url.searchParams.get('group')
? await getGroupEvents(url.searchParams.get('group') || '')
: await getEvents()
);
|