Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,11 @@
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;

// @Controller - COMMENTED OUT: UI not needed in resource server
// @Component
// The custodian login flow (C2a) redirects to /custodian/home on success
// (CustomerLoginSecurityConfiguration DEFAULT_SUCCESS_URL), so this landing controller must be
// enabled — otherwise the post-login redirect 404s and is re-dispatched to /error, which the
// resource-server chain returns as 401. Template: templates/custodian/home.html.
@Controller
@RequestMapping("/custodian/home")
public class CustodianHomeController {

Expand Down
Loading