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