Skip to content

Commit

Permalink
Fix formatting violations
Browse files Browse the repository at this point in the history
  • Loading branch information
ulischulte committed Jun 19, 2022
1 parent 586bf65 commit 0d3c667
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ public SecurityWebFilterChain securityWebFilterChainSecure(ServerHttpSecurity ht
return http
.authorizeExchange((authorizeExchange) -> authorizeExchange
.pathMatchers(this.adminServer.path("/assets/**")).permitAll()
.pathMatchers("/actuator/health/**").permitAll()
.pathMatchers(this.adminServer.path("/login")).permitAll().anyExchange().authenticated())
.pathMatchers("/actuator/health/**").permitAll().pathMatchers(this.adminServer.path("/login"))
.permitAll().anyExchange().authenticated())
.formLogin((formLogin) -> formLogin.loginPage(this.adminServer.path("/login")))
.logout((logout) -> logout.logoutUrl(this.adminServer.path("/logout")))
.httpBasic(Customizer.withDefaults()).csrf(ServerHttpSecurity.CsrfSpec::disable).build();
Expand Down

0 comments on commit 0d3c667

Please sign in to comment.