aboutsummaryrefslogtreecommitdiff
path: root/src/routes/api/events
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes/api/events')
-rw-r--r--src/routes/api/events/+server.ts2
-rw-r--r--src/routes/api/events/group/+server.ts2
-rw-r--r--src/routes/api/events/groups/+server.ts2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/routes/api/events/+server.ts b/src/routes/api/events/+server.ts
index b09d4e98..2f7d72d4 100644
--- a/src/routes/api/events/+server.ts
+++ b/src/routes/api/events/+server.ts
@@ -1,4 +1,4 @@
-import { getEvents, getGroupEvents } from '$lib/Database/Supabase/events';
+import { getEvents, getGroupEvents } from '$lib/Database/SB/events';
export const GET = async ({ url }) =>
Response.json(
diff --git a/src/routes/api/events/group/+server.ts b/src/routes/api/events/group/+server.ts
index 20637de0..430578a3 100644
--- a/src/routes/api/events/group/+server.ts
+++ b/src/routes/api/events/group/+server.ts
@@ -1,4 +1,4 @@
-import { getGroup } from '$lib/Database/Supabase/groups';
+import { getGroup } from '$lib/Database/SB/groups';
export const GET = async ({ url }) =>
Response.json(await getGroup(url.searchParams.get('slug') || ''));
diff --git a/src/routes/api/events/groups/+server.ts b/src/routes/api/events/groups/+server.ts
index 7ed9c344..db50d0ad 100644
--- a/src/routes/api/events/groups/+server.ts
+++ b/src/routes/api/events/groups/+server.ts
@@ -1,3 +1,3 @@
-import { getGroups } from '$lib/Database/Supabase/groups';
+import { getGroups } from '$lib/Database/SB/groups';
export const GET = async () => Response.json(await getGroups());