This commit is contained in:
David Arranz 2024-11-08 10:52:10 +01:00
parent c91f8494cb
commit 3fdc2098dd
3 changed files with 23 additions and 23 deletions

File diff suppressed because one or more lines are too long

View File

@ -5,15 +5,15 @@
<meta name="description" content="Descripción de la API de la APP LQDVI">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="assets/bootstrap.min.css?v=1731057773163" rel="stylesheet" media="screen">
<link href="assets/prism.css?v=1731057773163" rel="stylesheet" />
<link href="assets/prism-toolbar.css?v=1731057773163" rel="stylesheet" />
<link href="assets/prism-diff-highlight.css?v=1731057773163" rel="stylesheet" />
<link href="assets/main.css?v=1731057773163" rel="stylesheet" media="screen, print">
<link href="assets/favicon.ico?v=1731057773163" rel="icon" type="image/x-icon">
<link href="assets/apple-touch-icon.png?v=1731057773163" rel="apple-touch-icon" sizes="180x180">
<link href="assets/favicon-32x32.png?v=1731057773163" rel="icon" type="image/png" sizes="32x32">
<link href="assets/favicon-16x16.png?v=1731057773163" rel="icon" type="image/png" sizes="16x16">
<link href="assets/bootstrap.min.css?v=1731059486758" rel="stylesheet" media="screen">
<link href="assets/prism.css?v=1731059486758" rel="stylesheet" />
<link href="assets/prism-toolbar.css?v=1731059486758" rel="stylesheet" />
<link href="assets/prism-diff-highlight.css?v=1731059486758" rel="stylesheet" />
<link href="assets/main.css?v=1731059486758" rel="stylesheet" media="screen, print">
<link href="assets/favicon.ico?v=1731059486758" rel="icon" type="image/x-icon">
<link href="assets/apple-touch-icon.png?v=1731059486758" rel="apple-touch-icon" sizes="180x180">
<link href="assets/favicon-32x32.png?v=1731059486758" rel="icon" type="image/png" sizes="32x32">
<link href="assets/favicon-16x16.png?v=1731059486758" rel="icon" type="image/png" sizes="16x16">
</head>
<body class="container-fluid">
@ -1042,6 +1042,6 @@
</div>
</div>
<script src="assets/main.bundle.js?v=1731057773163"></script>
<script src="assets/main.bundle.js?v=1731059486758"></script>
</body>
</html>

View File

@ -182,7 +182,7 @@ routes.get(
* @api {get} /api/v4/web/events/:id/check_capacity?group_size=xx Verificar Capacidad del Evento (CheckEventCapacity)
* @apiName CheckEventCapacity
* @apiGroup Eventos
* @apiVersion 1.0.0
* @apiVersion 4.0.0
* @apiDescription Determina si hay aforo suficiente para el tamaño de grupo que se ha indicado.
*
* @apiParam {String} id ID único del evento.
@ -255,7 +255,7 @@ routes.get(
* @api {post} /api/v4/web/events/:eventId/inscriptions/ Dar de Alta una Inscripción (CreateEventInscription)
* @apiName CreateEventInscription
* @apiGroup Inscriptions
* @apiVersion 1.0.0
* @apiVersion 4.0.0
* @apiDescription Este endpoint permite registrar una inscripción a un evento específico.
*
* @apiParam {String} eventId Identificador único del evento.
@ -383,7 +383,7 @@ routes.post(
* @api {get} /api/v4/web/events/:id/inscriptions/:email Comprobar Inscripción (CheckInscription)
* @apiName CheckInscription
* @apiGroup Inscriptions
* @apiVersion 1.0.0
* @apiVersion 4.0.0
* @apiDescription Este endpoint verifica si el correo electrónico proporcionado tiene una inscripción para el evento concreto.
*
* @apiParam {String} id Identificador único del evento.
@ -410,7 +410,7 @@ routes.get("/web/events/:id/inscriptions/:email", isAPIKeyUser, eventInscription
* @api {get} /api/v4/web/inscriptions/:id Obtener datos de la Inscripción (GetInscription)
* @apiName GetInscription
* @apiGroup Inscriptions
* @apiVersion 1.0.0
* @apiVersion 4.0.0
* @apiDescription Este endpoint devuelve la inscripción correspondiente al id proporcionado.
*
* @apiParam {String} id Identificador único de la inscripcion.
@ -452,7 +452,7 @@ routes.get("/web/inscriptions/:id", isAPIKeyUser,
* @api {delete} /api/v4/web/inscriptions/:id Eliminar inscripcion (DeleteInscription)
* @apiName DeleteInscription
* @apiGroup Inscriptions
* @apiVersion 1.0.0
* @apiVersion 4.0.0
* @apiDescription Este endpoint elimina inscripción.
*
* @apiParam {String} id Identificador único de la inscripcion.
@ -478,7 +478,7 @@ routes.delete("/web/inscriptions/:id", isAPIKeyUser, eventInscriptionController.
* @api {get} /api/v4/web/entities/colleges Lista de Entidades Educativas (GetColleges)
* @apiName GetColleges
* @apiGroup Entidades
* @apiVersion 1.0.0
* @apiVersion 4.0.0
* @apiDescription Este endpoint devuelve una lista de entidades educativas, incluyendo su nombre, nivel y país.
*
* @apiSuccess {Object[]} colleges Lista de entidades educativas.