fix: permit /error endpoint to show proper error messages
This commit is contained in:
parent
22944b571d
commit
d1e3ffe12a
|
|
@ -60,6 +60,7 @@ public class WebSecurityConfig {
|
|||
.authorizeHttpRequests(auth -> auth
|
||||
.requestMatchers("/api/auth/**").permitAll()
|
||||
.requestMatchers("/api/test/**").permitAll()
|
||||
.requestMatchers("/error").permitAll()
|
||||
.anyRequest().authenticated()
|
||||
);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue