Skip to content
Snippets Groups Projects

Resolve "Show error messages from response"

6 files
+ 28
6
Compare changes
  • Side-by-side
  • Inline

Files

@@ -91,7 +91,8 @@ public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
@@ -91,7 +91,8 @@ public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
/* our public endpoints */
/* our public endpoints */
.antMatchers(HttpMethod.POST, "/api/user").permitAll()
.antMatchers(HttpMethod.POST, "/api/user").permitAll()
.antMatchers(HttpMethod.POST, "/api/auth").permitAll()
.antMatchers(HttpMethod.POST, "/api/auth").permitAll()
.antMatchers("/v3/api-docs/**",
.antMatchers("/v3/api-docs.yaml",
 
"/v3/api-docs/**",
"/swagger-ui/**",
"/swagger-ui/**",
"/swagger-ui.html").permitAll()
"/swagger-ui.html").permitAll()
/* our private endpoints */
/* our private endpoints */
Loading