Updated user profile UI

allow users to change their automatically assigned
openid identifier

Change-Id: Ia6d03967fe3174a73e4a7b3cffae5f19c3ab1399
This commit is contained in:
Sebastian Marcet
2018-09-20 14:38:36 -03:00
parent 865aefeaf1
commit 51702c2d7b
6 changed files with 70 additions and 22 deletions

View File

@@ -14,7 +14,7 @@
use OpenId\Models\IOpenIdUser;
use Models\Member;
use Utils\Exceptions\EntityNotFoundException;
use Services\Exceptions\ValidationException;
/**
* Interface IUserService
* @package OpenId\Services
@@ -75,9 +75,11 @@ interface IUserService
* @param bool $show_pic
* @param bool $show_full_name
* @param bool $show_email
* @param string $identifier
* @return bool
* @throws EntityNotFoundException
* @throws ValidationException
*/
public function saveProfileInfo($user_id, $show_pic, $show_full_name, $show_email);
public function saveProfileInfo($user_id, $show_pic, $show_full_name, $show_email, $identifier);
}