Polarcraft/webv2/server/api/teams/index.post.ts
Xeovalyte 9510e8a407
All checks were successful
Build and Deploy / Deploy Web (push) Successful in 1m1s
Build and Deploy / Deploy Discord Bot (push) Successful in 42s
feat: Added team creation, closes #22
2023-06-06 14:29:05 +02:00

13 lines
197 B
TypeScript

export default defineEventHandler(async (event) => {
const { name, color } = await readBody(event)
const team = new TeamModel({
name,
color
})
await team.save()
return team
})