delete spaces

This commit is contained in:
2026-04-13 12:11:14 -05:00
parent 0d9e82f527
commit 8b6186ff6e
2 changed files with 0 additions and 3 deletions
@@ -19,7 +19,6 @@ export class ProgramaEquipoController {
@UseGuards(JwtAuthGuard, RolesGuard)
@Roles(Role.ADMINISTRADOR, Role.SUPER_ADMINISTRADOR)
@Get('ubicacion/:id')
findAllProgramByUbicacion(@Param('id') id: string) {
return this.programaEquipoService.findAllProgramByUbication(id);
-2
View File
@@ -61,9 +61,7 @@ export class UserController {
}
@UseGuards(JwtAuthGuard, RolesGuard)
@Roles(Role.ADMINISTRADOR, Role.SUPER_ADMINISTRADOR)
@Post('/create')
async createUser(@Body() data: CreateUserDto) {
return this.userService.create(data);