fix: conflicts
parent
b52832f333
commit
8627b28a8e
|
@ -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
|
||||
|
@ -37,22 +36,7 @@ async function createOrlistAllEventTypes(
|
|||
select: { eventTypes: true },
|
||||
})
|
||||
.catch((error) => res.status(404).json({ message: "No event types were found", error }));
|
||||
<<<<<<< HEAD
|
||||
=======
|
||||
<<<<<<< HEAD
|
||||
=======
|
||||
console.log(`userid is: ${userId}`, "eventTypes:", data);
|
||||
>>>>>>> 6099bfb (fix: more logging)
|
||||
// const event_types = data.map(
|
||||
// async (eventType) => await schemaEventTypeReadPublic.safeParseAsync(eventType)
|
||||
// );
|
||||
>>>>>>> d374031 (fix: more logging)
|
||||
if (data) res.status(200).json({ event_types: data.eventTypes });
|
||||
|
||||
console.log(`userid is: ${userId}`, "eventTypes:", data);
|
||||
// const event_types = data.map(
|
||||
// async (eventType) => await schemaEventTypeReadPublic.safeParseAsync(eventType)
|
||||
// );
|
||||
if (data) res.status(200).json({ event_types: data.eventTypes });
|
||||
else
|
||||
(error: Error) =>
|
||||
|
|
Loading…
Reference in New Issue