Esempio n. 1
0
 /**
  * Reset admin user password and send it to the users email address
  * 
  * @action resetPassword
  * @param string $email
  *
  * @throws KalturaErrors::ADMIN_KUSER_NOT_FOUND
  * @throws KalturaErrors::PASSWORD_STRUCTURE_INVALID
  * @throws KalturaErrors::PASSWORD_ALREADY_USED
  * @throws KalturaErrors::INVALID_FIELD_VALUE
  * @throws KalturaErrors::LOGIN_ID_ALREADY_USED
  */
 public function resetPasswordAction($email)
 {
     try {
         return parent::resetPasswordImpl($email);
     } catch (KalturaAPIException $e) {
         $this->throwTranslatedException($e);
     }
 }
Esempio n. 2
0
 /**
  * Reset admin user password and send it to the users email address
  * 
  * @action resetPassword
  * 
  * @param string $email
  *
  * @throws KalturaErrors::LOGIN_DATA_NOT_FOUND
  * @throws KalturaErrors::PASSWORD_STRUCTURE_INVALID
  * @throws KalturaErrors::PASSWORD_ALREADY_USED
  * @throws KalturaErrors::INVALID_FIELD_VALUE
  * @throws KalturaErrors::LOGIN_ID_ALREADY_USED
  */
 public function resetPasswordAction($email)
 {
     return parent::resetPasswordImpl($email);
 }