Modificacion para agegar la descarga de participantes de eventos

This commit is contained in:
santiago
2025-08-23 09:57:16 -06:00
parent 2c953b58da
commit 98ca9f7792
3 changed files with 11 additions and 5 deletions
+2 -2
View File
@@ -32,7 +32,7 @@ export class EventosController {
@UseGuards(AuthGuard('jwt'))
@Post()
postEvento(@Body() nuevoEvento: crearEventoDto){
return this.eventoService.postEvento(nuevoEvento)
return this.eventoService.postEvento(nuevoEvento)
}
@UseGuards(AuthGuard('jwt'))
@@ -44,7 +44,7 @@ export class EventosController {
@UseGuards(AuthGuard('jwt'))
@Delete(':id')
deleteEvento(@Param('id', ParseIntPipe)id: number){
return this.eventoService.deleteEventoParticipante(id)
return this.eventoService.deleteEventoParticipante(id)
}
@Get(':id/cupos')