Skip to content

Commit 1e33e4a

Browse files
committed
fix: 로그인 anonymous 해제
1 parent e6f393c commit 1e33e4a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/main/java/com/oronaminc/join/member/security/SecurityConfig.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff 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/**",

0 commit comments

Comments
 (0)