style(): reformatted
This commit is contained in:
@@ -21,8 +21,15 @@ class SecurityConfiguration(
|
|||||||
}.defaultSuccessUrl("/api/users/me", true)
|
}.defaultSuccessUrl("/api/users/me", true)
|
||||||
}.authorizeHttpRequests { auth ->
|
}.authorizeHttpRequests { auth ->
|
||||||
auth
|
auth
|
||||||
.requestMatchers("/", "/login/**", "/oauth2/**", "/h2-console/**", "/actuator/health")
|
.requestMatchers(
|
||||||
.permitAll()
|
"/",
|
||||||
|
"/login/**",
|
||||||
|
"/oauth2/**",
|
||||||
|
"/h2-console/**",
|
||||||
|
"/actuator/health",
|
||||||
|
"/actuator/health/**",
|
||||||
|
"/actuator/prometheus",
|
||||||
|
).permitAll()
|
||||||
.requestMatchers("/api/v1/docs/**", "/api/v1/swagger-ui/**", "/swagger-ui/**")
|
.requestMatchers("/api/v1/docs/**", "/api/v1/swagger-ui/**", "/swagger-ui/**")
|
||||||
.permitAll()
|
.permitAll()
|
||||||
.requestMatchers(
|
.requestMatchers(
|
||||||
|
|||||||
Reference in New Issue
Block a user