fix
This commit is contained in:
@@ -40,6 +40,5 @@ export const verifyApiKey: NextMiddleware = async (req, res, next) => {
|
||||
if (!apiKey.userId) return res.status(404).json({ error: "No user found for this apiKey" });
|
||||
/* We save the user id in the request for later use */
|
||||
req.userId = apiKey.userId;
|
||||
console.log(`User ${apiKey.userId} verified`);
|
||||
await next();
|
||||
};
|
||||
|
||||
@@ -10,7 +10,6 @@ async function createOrlistAllEventTypes(
|
||||
{ method, body, userId }: NextApiRequest,
|
||||
res: NextApiResponse<EventTypesResponse | EventTypeResponse>
|
||||
) {
|
||||
console.log("userId:", userId);
|
||||
if (method === "GET") {
|
||||
/**
|
||||
* @swagger
|
||||
|
||||
Reference in New Issue
Block a user