format
This commit is contained in:
parent
8dd3132ec4
commit
c1106e7d63
|
@ -14,8 +14,8 @@ export class UsersService {
|
|||
@InjectModel(User.name) private readonly userModel: Model<UserDocument>,
|
||||
@Inject('SERVICIO_NOTIFICACIONES') private readonly clientNotificationtApp: ClientProxy,
|
||||
@Inject('SERVICIO_COMUNIDADES') private readonly clientCommunityApp: ClientProxy,
|
||||
|
||||
) { }
|
||||
|
||||
private publicKey: string;
|
||||
async create(user: UserDocument): Promise<User> {
|
||||
let passwordEncriptada = Md5.init(user.password);
|
||||
|
@ -83,7 +83,7 @@ export class UsersService {
|
|||
}*/
|
||||
|
||||
async remove(id: string) {
|
||||
return this.userModel.findOneAndUpdate({ _id: id }, {status: '-1'}, {
|
||||
return this.userModel.findOneAndUpdate({ _id: id }, { status: '-1' }, {
|
||||
new: true,
|
||||
});
|
||||
}
|
||||
|
@ -104,7 +104,8 @@ export class UsersService {
|
|||
resolve(res[0]);
|
||||
} else {
|
||||
resolve(null);
|
||||
}}else{
|
||||
}
|
||||
} else {
|
||||
resolve(null);
|
||||
}
|
||||
}
|
||||
|
@ -183,14 +184,14 @@ export class UsersService {
|
|||
}
|
||||
|
||||
async deleteAdminSystem(id: string) {
|
||||
return this.userModel.findOneAndUpdate({ _id: id }, {status: '-1'}, {
|
||||
return this.userModel.findOneAndUpdate({ _id: id }, { status: '-1' }, {
|
||||
new: true,
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
deleteAdminCommunity(id: string) {
|
||||
return this.userModel.findOneAndUpdate({ _id: id }, {status: '-1'}, {
|
||||
return this.userModel.findOneAndUpdate({ _id: id }, { status: '-1' }, {
|
||||
new: true,
|
||||
});
|
||||
}
|
||||
|
@ -234,7 +235,7 @@ export class UsersService {
|
|||
}
|
||||
|
||||
async changeStatus(id: string, status: string) {
|
||||
return this.userModel.findOneAndUpdate({ _id: id }, {status: status}, {
|
||||
return this.userModel.findOneAndUpdate({ _id: id }, { status: status }, {
|
||||
new: true,
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue