Cleaned admin controller

This commit is contained in:
Rohan Sircar 2020-05-27 16:35:26 +05:30
parent 33bd91b5b7
commit b384966ec7

View File

@ -7,26 +7,18 @@ import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
import lombok.RequiredArgsConstructor;
@Controller @Controller
@RequestMapping("/admin") @RequestMapping("/admin")
@RequiredArgsConstructor
public class AdminController { public class AdminController {
@Autowired @Autowired
private UserService userService; private final UserService userService;
// @RequestMapping
// public ModelAndView viewManageUsers(Principal principal) {
// ModelAndView modelAndView = new ModelAndView("/admin/home");
// modelAndView.addObject("user", new String());
// modelAndView.addObject("userNames", userService.getAllRegularUsers());
// return modelAndView;
// }
@GetMapping() @GetMapping()
public String home() public String home() {
{
// model.addAttribute("user", new String());
// model.addAttribute("userNames", userService.getAllRegularUsers());
return "admin/home"; return "admin/home";
} }