Skip to content

Commit

Permalink
[feat] : 임시 로그인 API 인가 허용 (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
dudxo authored Aug 12, 2024
1 parent dc97d4c commit d0deb05
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
(auth) -> auth
.requestMatchers("/").permitAll()
.requestMatchers("/swagger-ui/**", "/v3/api-docs/**", "/swagger-ui.html").permitAll()
.requestMatchers("/api/auth/signin/kakao").permitAll()
.requestMatchers("/api/auth/signin/kakao", "/api/auth/token").permitAll()
.requestMatchers("/additional-info").permitAll()
.anyRequest().authenticated()
)
Expand Down

0 comments on commit d0deb05

Please sign in to comment.