This commit is contained in:
David Arranz 2024-09-04 12:30:14 +02:00
parent 91c7db6a97
commit 2737c82ecd

View File

@ -440,7 +440,9 @@ routes.get(
);
// Comprobar si estoy inscrito al congreso por la web
routes.get("/web/events/:id/inscriptions/:email", eventInscriptionController.checkInscriptionByMail);
routes.get("/web/events/:id/inscriptions/:email",
isAPIKeyUser,
eventInscriptionController.checkInscriptionByMail);
module.exports = routes;