Skip to content

Commit

Permalink
Merge pull request #89 from Alpha-Damyo/develop
Browse files Browse the repository at this point in the history
merge to main
  • Loading branch information
wjdwlghks authored Jun 9, 2024
2 parents 13316f4 + 3ec620f commit fdf4e9e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ public class SecurityConfig {
@Bean
SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
http.authorizeHttpRequests(authorizeRequest ->
authorizeRequest.requestMatchers(ALLOWED_URLS).permitAll())
authorizeRequest.requestMatchers(ALLOWED_URLS).permitAll()
.anyRequest().authenticated())
.csrf(AbstractHttpConfigurer::disable)
.cors(AbstractHttpConfigurer::disable)
.httpBasic(AbstractHttpConfigurer::disable)
Expand Down

0 comments on commit fdf4e9e

Please sign in to comment.