Skip to content

Commit

Permalink
Merge pull request #65 from devocean-finut/fix/issue
Browse files Browse the repository at this point in the history
#60 Fix SecurityConfig : login url 삭제
  • Loading branch information
plum-king authored Nov 14, 2024
2 parents c10de2c + 5b79e0f commit c52a72d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http, CustomOAuth2Us
authorizeRequests
.requestMatchers("/swagger", "/swagger-ui.html", "/swagger-ui/**", "/api-docs", "/api-docs/**", "/v3/api-docs/**")
.permitAll()
.requestMatchers("/", "/login/**", "/h2-console/**").permitAll()
.requestMatchers("/", "/h2-console/**").permitAll()
.anyRequest().authenticated()
)
.oauth2Login(oauth2Login ->
Expand Down

0 comments on commit c52a72d

Please sign in to comment.