@PreAuthorize("hasAuthority('ADMIN')")
 @RequestMapping(value = "/admin/media/list/{page}/{type}", method = RequestMethod.GET)
 public ModelAndView listMedia(@PathVariable String page, @PathVariable String type) {
   LOGGER.debug("Getting media list");
   return new ModelAndView(
       "media/medialist", "medialist", mediaService.getMediaByPageAndType(page, type));
 }