Added missing user delete route.

This commit is contained in:
Mike Cao 2025-02-03 19:34:09 -08:00
parent 7d952029c1
commit fc4716a38d
4 changed files with 37 additions and 12 deletions

View file

@ -29,7 +29,7 @@ export async function POST(request: Request) {
name,
accessCode: `team_${getRandomChars(16)}`,
},
auth.user.userId,
auth.user.id,
);
return json(team);