Skip to content

Commit

Permalink
chore: 예외 처리 경로 수정 (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
junseoplee committed Sep 13, 2024
1 parent 47c0eeb commit a13ddb2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
.authorizeHttpRequests(request -> request
.requestMatchers("/h2-console/**").permitAll()
.requestMatchers("/v1/auth/**").permitAll()
.requestMatchers("v1/exception/**").permitAll()
.requestMatchers("/v1/exception/**").permitAll()
.anyRequest().authenticated()
)
.addFilterBefore(jwtFilter, UsernamePasswordAuthenticationFilter.class)
Expand Down

0 comments on commit a13ddb2

Please sign in to comment.