Skip to content

Commit

Permalink
RELEASE-3.10.0: Make sessionId request parameter optional in IDV demo…
Browse files Browse the repository at this point in the history
… project
  • Loading branch information
MrBurtyyy committed Oct 22, 2024
1 parent 703d501 commit 1888d34
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public String getIndex(final Model model, HttpSession httpSession) {
}

@RequestMapping(value = "/success", method = RequestMethod.GET)
public String getUserSession(@RequestParam(value = "sessionId") String sessionIdQueryParam, final Model model, HttpSession httpSession) {
public String getUserSession(@RequestParam(value = "sessionId", required = false) String sessionIdQueryParam, final Model model, HttpSession httpSession) {
String sessionId;
if (sessionIdQueryParam != null) {
sessionId = sessionIdQueryParam;
Expand Down

0 comments on commit 1888d34

Please sign in to comment.