aboutsummaryrefslogtreecommitdiff
path: root/src/routes/api/events/group/+server.ts
blob: 430578a3c1b5f78b6c2540ee3890dbb3235ab621 (plain) (blame)
1
2
3
4
import { getGroup } from '$lib/Database/SB/groups';

export const GET = async ({ url }) =>
	Response.json(await getGroup(url.searchParams.get('slug') || ''));