Skip to content

Commit

Permalink
SHIBUI-2646: fixes for MDQ when not using pac4j and entity ids have a…
Browse files Browse the repository at this point in the history
… slash in the id
  • Loading branch information
chasegawa committed Jan 8, 2025
1 parent 66123ad commit fa8ae2c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,9 @@ public WebSecurityCustomizer noAuthWebSecurityCustomizer() {
}

private HttpFirewall defaultFirewall() {
return new DefaultHttpFirewall();
DefaultHttpFirewall defaultFirewall = new DefaultHttpFirewall();
defaultFirewall.setAllowUrlEncodedSlash(true);
return defaultFirewall;
}

class SimpleAuthenticationProvider implements AuthenticationProvider {
Expand Down

0 comments on commit fa8ae2c

Please sign in to comment.