Skip to content

Commit

Permalink
fix: permit request API 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
soomanbaek committed Aug 9, 2023
1 parent edbd0e7 commit b03f9f8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
@Configuration
@EnableWebSecurity
@RequiredArgsConstructor
public class securityConfig {
public class SecurityConfig {
private final JwtAuthenticationFilter jwtAuthFilter;

@Bean
Expand All @@ -25,7 +25,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
http.authorizeHttpRequests()
.requestMatchers(
"api/auth/signup",
"/api/auth/login")
"api/auth/login")
.permitAll()
.anyRequest()
.authenticated();
Expand Down

0 comments on commit b03f9f8

Please sign in to comment.