// TODO: change this in android
 @RequestMapping(value = "getUserByEmail", method = RequestMethod.POST)
 @ResponseBody
 public User getUserByEmail(@RequestBody String email) {
   // TODO: figure out why we have additional " characters
   email = email.replace("\"", "");
   return userService.findUserByEmail(email);
 }