You are here

public function Github_Api_User::removeEmail in Bibliography Module 7.2

Remove an email from the authenticated user. Requires authentication.

Return value

array list of authenticated user emails

File

modules/CiteProc/Github/Api/User.php, line 192

Class

Github_Api_User
Searching users, getting user information and managing authenticated user account information.

Code

public function removeEmail($email) {
  $response = $this
    ->post('user/email/remove', array(
    'email' => $email,
  ));
  return $response['emails'];
}