Class DashboardController

java.lang.Object
vaultWeb.controllers.DashboardController

@RestController @RequestMapping("/api/dashboard") public class DashboardController extends Object
Provides aggregated user-centric data to power the dashboard UI.
  • Constructor Details

    • DashboardController

      public DashboardController()
  • Method Details

    • getCurrentUserDashboard

      @GetMapping("/me") public org.springframework.http.ResponseEntity<UserDashboardDto> getCurrentUserDashboard()
    • getDashboardForUser

      @GetMapping("/{username}") public org.springframework.http.ResponseEntity<UserDashboardDto> getDashboardForUser(@PathVariable String username)