We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9106c6 commit 444c55dCopy full SHA for 444c55d
src/main/java/codeview/main/config/SecurityConfig.java
@@ -59,7 +59,9 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
59
new AntPathRequestMatcher("/home"),
60
new AntPathRequestMatcher("/login"),
61
new AntPathRequestMatcher("/oauth2/**"),
62
+ new AntPathRequestMatcher("/env"),
63
new AntPathRequestMatcher("/api/oauth2/**")
64
+
65
).permitAll()
66
.anyRequest().authenticated())
67
.oauth2Login(oauth -> oauth
0 commit comments