Skip to content

Commit

Permalink
Merge pull request #30 from jwpark1211/develop
Browse files Browse the repository at this point in the history
fix : authenticated api
  • Loading branch information
jwpark1211 authored May 24, 2024
2 parents a7b8561 + be6573f commit f6beb0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/capstone/bookitty/common/SecurityConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
antMatcher("/members/new"),
antMatcher("/members/email/**")).permitAll()
//.requestMatchers(antMatcher("")).authenticated()
.anyRequest().permitAll())
.anyRequest().authenticated())
.formLogin(AbstractHttpConfigurer::disable)
.logout((logout) ->
logout
Expand Down

0 comments on commit f6beb0c

Please sign in to comment.