cal.pub0.org/pages/api/teams.ts

36 lines
883 B
TypeScript
Raw Normal View History

2021-07-07 10:43:13 +00:00
import type { NextApiRequest, NextApiResponse } from "next";
import prisma from "../../lib/prisma";
import { getSession } from "next-auth/client";
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
2021-07-07 10:43:13 +00:00
const session = await getSession({ req: req });
if (!session) {
2021-07-07 10:43:13 +00:00
res.status(401).json({ message: "Not authenticated" });
return;
}
if (req.method === "POST") {
// TODO: Prevent creating a team with identical names?
const createTeam = await prisma.team.create({
data: {
name: req.body.name,
},
});
2021-07-01 09:47:12 +00:00
await prisma.membership.create({
data: {
teamId: createTeam.id,
userId: session.user.id,
2021-07-07 10:43:13 +00:00
role: "OWNER",
accepted: true,
2021-07-07 10:43:13 +00:00
},
});
2021-07-07 10:43:13 +00:00
return res.status(201).json({ message: "Team created" });
}
2021-07-07 10:43:13 +00:00
res.status(404).json({ message: "Team not found" });
}