sending email is already in the project

This commit is contained in:
2023-03-14 15:26:00 -06:00
parent 878bccde38
commit 498e70e589
16 changed files with 205 additions and 19 deletions
+6 -1
View File
@@ -37,8 +37,13 @@ export class EventosController {
return this.eventoService.deleteEventoParticipante(id)
}
@Get(':id/participantes')
@Get(':id/cupos')
async getCupos(@Param('id', ParseIntPipe)id: number){
return this.eventoService.getCupos(id)
}
@Get(':id/participante')
async getParticipnates(@Param('id', ParseIntPipe)id:number){
return this.eventoService.getParticipantes(id)
}
}