fix
parent
9f50972570
commit
a91dd428c0
|
@ -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" });
|
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 */
|
/* We save the user id in the request for later use */
|
||||||
req.userId = apiKey.userId;
|
req.userId = apiKey.userId;
|
||||||
console.log(`User ${apiKey.userId} verified`);
|
|
||||||
await next();
|
await next();
|
||||||
};
|
};
|
||||||
|
|
|
@ -10,7 +10,6 @@ async function createOrlistAllEventTypes(
|
||||||
{ method, body, userId }: NextApiRequest,
|
{ method, body, userId }: NextApiRequest,
|
||||||
res: NextApiResponse<EventTypesResponse | EventTypeResponse>
|
res: NextApiResponse<EventTypesResponse | EventTypeResponse>
|
||||||
) {
|
) {
|
||||||
console.log("userId:", userId);
|
|
||||||
if (method === "GET") {
|
if (method === "GET") {
|
||||||
/**
|
/**
|
||||||
* @swagger
|
* @swagger
|
||||||
|
|
Loading…
Reference in New Issue