aboutsummaryrefslogtreecommitdiff
path: root/src/routes/api/events/+server.ts
blob: 2f7d72d4bb5772fa17185d38d4655763f6d5ef9b (plain) (blame)
1
2
3
4
5
6
7
8
import { getEvents, getGroupEvents } from '$lib/Database/SB/events';

export const GET = async ({ url }) =>
	Response.json(
		url.searchParams.get('group')
			? await getGroupEvents(url.searchParams.get('group') || '')
			: await getEvents()
	);