Skip to content

Commit

Permalink
Merge pull request #255 from codesquad-members-2023-team6/dev
Browse files Browse the repository at this point in the history
Fix : Security 다시 적용
  • Loading branch information
lvalentine6 committed Jun 1, 2023
2 parents e1e539a + 2d70984 commit 8453a9e
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ 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()
.anyRequest().authenticated()
Expand Down

0 comments on commit 8453a9e

Please sign in to comment.