Skip to content

Commit

Permalink
feat : 모든 요청 다 받도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jsilver01 committed Aug 6, 2024
1 parent c8c9c83 commit 828361d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
.authorizeHttpRequests(requests ->
requests
.requestMatchers(HttpMethod.OPTIONS, "/**").permitAll()
.requestMatchers("/test", "/auth/kakao/callback", "/user/signup", "/main").permitAll()
.requestMatchers("/test", "/auth/kakao/callback", "/user/signup", "/main", "/**").permitAll()
.anyRequest().authenticated()
)
.sessionManagement(sessionManagement ->
Expand Down

0 comments on commit 828361d

Please sign in to comment.