File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
src/main/java/com/oronaminc/join/member/security Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -30,12 +30,12 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
3030 .csrf (csrf -> csrf .disable ())
3131 .cors (cors -> cors .configurationSource (corsConfigurationSource ()))
3232 .authorizeHttpRequests (auth -> auth
33- .requestMatchers (
34- "/api/auth/guest" ,
35- "/api/auth/kakao" ,
36- "/login"
37- )
38- .anonymous ()
33+ // .requestMatchers(
34+ // "/api/auth/guest",
35+ // "/api/auth/kakao",
36+ // "/login"
37+ // )
38+ // .anonymous()
3939 .requestMatchers (
4040 "/swagger-ui/**" ,
4141 "/swagger-resources/**" ,
@@ -47,8 +47,8 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
4747 "/ws/**"
4848 )
4949 .permitAll ()
50- .requestMatchers ( "/ws/**" ). permitAll ()
51- .anyRequest (). authenticated ()
50+ .anyRequest ()
51+ .authenticated ()
5252 )
5353 .formLogin (AbstractHttpConfigurer ::disable )
5454 .oauth2Login (oauth2 -> oauth2 .userInfoEndpoint (userInfo -> userInfo
You can’t perform that action at this time.
0 commit comments