This commit is contained in:
2026-03-04 14:20:47 -05:00
parent 04290f4097
commit 81ad881d6a
2 changed files with 24 additions and 0 deletions
+15
View File
@@ -21,6 +21,21 @@ export class UserService {
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> {
const { usuario, password } = data;