@RequestMapping(
     value = {"/workspace/user/another-application-user-list"},
     method = RequestMethod.GET)
 public String listOfUserApplication(ModelMap modelMap, Principal principal) {
   modelMap.addAttribute(
       "listApplication",
       applicationService.listOfUserEvents(
           userService.findByUsername(principal.getName()).getIdUser()));
   return "pages/user/another-application/another-application-user-list";
 }