cal.pub0.org/pages/api/users/_post.ts

35 lines
1014 B
TypeScript
Raw Normal View History

2022-06-14 20:08:58 +00:00
import type { NextApiRequest } from "next";
import { HttpError } from "@calcom/lib/http-error";
2022-06-14 20:08:58 +00:00
import { defaultResponder } from "@calcom/lib/server";
import { schemaUserCreateBodyParams } from "@lib/validations/user";
/**
* @swagger
* /users:
* post:
* operationId: addUser
* summary: Creates a new user
* tags:
* - users
* responses:
* 201:
* description: OK, user created
* 400:
* description: Bad request. user body is invalid.
* 401:
* description: Authorization information is missing or invalid.
*/
2022-06-14 20:08:58 +00:00
async function postHandler(req: NextApiRequest) {
const { prisma, isAdmin } = req;
2022-06-14 20:08:58 +00:00
// If user is not ADMIN, return unauthorized.
if (!isAdmin) throw new HttpError({ statusCode: 401, message: "You are not authorized" });
const data = schemaUserCreateBodyParams.parse(req.body);
const user = await prisma.user.create({ data });
req.statusCode = 201;
return { user };
}
export default defaultResponder(postHandler);