/**
  * Returns a listing of all users.
  */
 public function index()
 {
     $users = $this->usersRepository->getAll();
     return $this->respondOk($users);
 }