merge
This commit is contained in:
@@ -6,6 +6,7 @@ import {
|
|||||||
UseGuards,
|
UseGuards,
|
||||||
Res,
|
Res,
|
||||||
Req,
|
Req,
|
||||||
|
Param,
|
||||||
} from '@nestjs/common';
|
} from '@nestjs/common';
|
||||||
import type { Response } from 'express';
|
import type { Response } from 'express';
|
||||||
import { UserService } from './user.service';
|
import { UserService } from './user.service';
|
||||||
@@ -21,6 +22,12 @@ export class UserController {
|
|||||||
|
|
||||||
@UseGuards(JwtAuthGuard, RolesGuard)
|
@UseGuards(JwtAuthGuard, RolesGuard)
|
||||||
@Roles(Role.ADMINISTRADOR, Role.SUPER_ADMINISTRADOR)
|
@Roles(Role.ADMINISTRADOR, Role.SUPER_ADMINISTRADOR)
|
||||||
|
|
||||||
|
@Get('/switch/:id')
|
||||||
|
async getactive(@Param('id') id:number) {
|
||||||
|
return this.userService.getactive(id);
|
||||||
|
}
|
||||||
|
|
||||||
@Get()
|
@Get()
|
||||||
async getAll() {
|
async getAll() {
|
||||||
return this.userService.getAll();
|
return this.userService.getAll();
|
||||||
@@ -45,7 +52,9 @@ export class UserController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@UseGuards(JwtAuthGuard, RolesGuard)
|
@UseGuards(JwtAuthGuard, RolesGuard)
|
||||||
|
|
||||||
@Roles(Role.ADMINISTRADOR, Role.SUPER_ADMINISTRADOR)
|
@Roles(Role.ADMINISTRADOR, Role.SUPER_ADMINISTRADOR)
|
||||||
|
|
||||||
@Post('/create')
|
@Post('/create')
|
||||||
async createUser(@Body() data: CreateUserDto) {
|
async createUser(@Body() data: CreateUserDto) {
|
||||||
return this.userService.create(data);
|
return this.userService.create(data);
|
||||||
|
|||||||
@@ -21,6 +21,21 @@ export class UserService {
|
|||||||
private jwtService: JwtService,
|
private jwtService: JwtService,
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
|
|
||||||
|
async getactive(id: number) {
|
||||||
|
const user = await this.userRepository.findOne({
|
||||||
|
where: { id_usuario: id },
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!user) {
|
||||||
|
throw new NotFoundException('Usuario no encontrado');
|
||||||
|
}
|
||||||
|
|
||||||
|
user.activo = user.activo === 1 ? 0 : 1;
|
||||||
|
|
||||||
|
return this.userRepository.save(user);
|
||||||
|
}
|
||||||
|
|
||||||
async findOneByNameandPassword(data: Login): Promise<User> {
|
async findOneByNameandPassword(data: Login): Promise<User> {
|
||||||
const { usuario, password } = data;
|
const { usuario, password } = data;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user