/**
  * Reset the given user's password.
  *
  * @return array
  */
 public function postReset()
 {
     $this->registrar->resetPassword();
     return ['message' => 'Password successfully reset'];
 }