예제 #1
0
파일: UserModel.php 프로젝트: nabble/ajde
 public function copyAvatarFromSso(SsoModel $sso)
 {
     if ($sso->hasNotEmpty('avatar')) {
         $this->set('avatar', $sso->get('avatar'));
         $this->save();
     }
 }