Skip to content

Commit c13703f

Browse files
authored
fix: 시큐리티 permitAll 추가 (#135)
* fix: 에러 코드 변경 * fix: cors 허용 메서드 수정 * fix: 로그인 anonymous 해제 * fix: 시큐리티 컨픽 불필요한 부분 삭제 * fix: 시큐리티 컨픽 permitall 추가
1 parent fb221eb commit c13703f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,10 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
4444
"/login/oauth2/code/kakao",
4545
"/api/auth/logout",
4646
"/dev/**",
47-
"/ws/**"
47+
"/ws/**",
48+
"/api/auth/guest",
49+
"/api/auth/kakao",
50+
"/login"
4851
)
4952
.permitAll()
5053
.anyRequest()

0 commit comments

Comments
 (0)