Skip to content

Commit

Permalink
Merge pull request #260 from codesquad-members-2023-team6/dev
Browse files Browse the repository at this point in the history
Fix : 예외 경로 추가
  • Loading branch information
lvalentine6 committed Jun 1, 2023
2 parents 9083563 + 41419b2 commit 09ef1d1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ public SecurityConfig(JwtService jwtService) {
protected void configure(HttpSecurity http) throws Exception {
http .csrf().disable()
.authorizeRequests()
.antMatchers("/", "/login","/oauth/**",
.antMatchers("/", "/login/**","/oauth/**",
"/error", "/swagger-ui/**",
"/v3/**").permitAll()
"/v3/**", "auth/**").permitAll()
.anyRequest().authenticated()
.and()
.sessionManagement()
Expand Down

0 comments on commit 09ef1d1

Please sign in to comment.