mirror of https://github.com/fantasticit/think.git
fix: 验证重复
This commit is contained in:
parent
4597430f34
commit
e2f7ac85b1
|
@ -136,10 +136,6 @@ export class UserService {
|
||||||
throw new HttpException('该账户已被注册', HttpStatus.BAD_REQUEST);
|
throw new HttpException('该账户已被注册', HttpStatus.BAD_REQUEST);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (await this.userRepo.findOne({ name: user.name })) {
|
|
||||||
throw new HttpException('该账户已被注册', HttpStatus.BAD_REQUEST);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (user.email && (await this.userRepo.findOne({ email: user.email }))) {
|
if (user.email && (await this.userRepo.findOne({ email: user.email }))) {
|
||||||
throw new HttpException('该邮箱已被注册', HttpStatus.BAD_REQUEST);
|
throw new HttpException('该邮箱已被注册', HttpStatus.BAD_REQUEST);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue