Skip to content

Commit

Permalink
Merge pull request #273 from codesquad-members-2023-team6/dev
Browse files Browse the repository at this point in the history
Test 임시 경로 수정
  • Loading branch information
new-pow committed Jun 1, 2023
2 parents 847d265 + 9b6ec8b commit 43c9ed6
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ public SecurityConfig(JwtService jwtService) {
protected void configure(HttpSecurity http) throws Exception {
http .csrf().disable()
.authorizeRequests()
.antMatchers("/", "/login/**","/oauth/**",
"/issue/**",
.antMatchers("/**",
"/", "/login/**","/oauth/**",
"/issue/**",/*임시 오픈 이슈*/
"/error", "/swagger-ui/**",
"/v3/**", "auth/**").permitAll()
.anyRequest().authenticated()
Expand Down

0 comments on commit 43c9ed6

Please sign in to comment.