|
@@ -120,6 +120,9 @@ class User extends Api
|
|
|
$user->birthday = $birthday;
|
|
|
}
|
|
|
if($email){
|
|
|
+ if (!Validate::is($email, "email")) {
|
|
|
+ $this->error(__('Email is incorrect'));
|
|
|
+ }
|
|
|
$exists = \app\common\model\User::where('username', $email)->where('id', '<>', $this->auth->id)->find();
|
|
|
if ($exists) {
|
|
|
$this->error('邮箱已存在');
|