pull/9078/head
Agusti Fernandez Pardo 2022-05-27 20:48:21 +02:00
parent 824d01f358
commit 5b65bd1b66
2 changed files with 9 additions and 0 deletions

View File

@ -40,5 +40,6 @@ 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();
};

View File

@ -37,8 +37,16 @@ async function createOrlistAllEventTypes(
select: { eventTypes: true },
})
.catch((error) => res.status(404).json({ message: "No event types were found", error }));
<<<<<<< HEAD
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 });
>>>>>>> 6099bfb (fix: more logging)
else
(error: Error) =>
res.status(404).json({