Convert event-data, events, session-data, sessions routes.

This commit is contained in:
Mike Cao 2025-01-21 20:57:47 -08:00
parent baa3851fb4
commit 7d5556a637
47 changed files with 692 additions and 136 deletions

View file

@ -7,6 +7,7 @@ import { checkRequest } from 'lib/request';
export async function GET(request: Request, { params }: { params: Promise<{ userId: string }> }) {
const { userId } = await params;
const auth = await checkAuth(request);
if (!auth || !(await canViewUser(auth, userId))) {
@ -32,6 +33,7 @@ export async function POST(request: Request, { params }: { params: Promise<{ use
}
const { userId } = await params;
const auth = await checkAuth(request);
if (!auth || !(await canUpdateUser(auth, userId))) {