Skip to content

Commit

Permalink
chore: SecurityConfig setHttp 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
clean2001 committed Jul 16, 2024
1 parent 5647a15 commit a1cfdb9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ private void setHttp(HttpSecurity http) throws Exception {
.requestMatchers(new AntPathRequestMatcher("/api/auth/reissue-token")).permitAll()
.requestMatchers(new AntPathRequestMatcher("/api/auth/sign-up")).permitAll()
.requestMatchers(new AntPathRequestMatcher("/api/auth/oauth2/google")).permitAll()
.requestMatchers(new AntPathRequestMatcher("/api/test")).permitAll()
.requestMatchers(new AntPathRequestMatcher("/api/auth/oauth2/kakao")).permitAll()
.requestMatchers(new AntPathRequestMatcher("/api/test")).permitAll()
.requestMatchers(new AntPathRequestMatcher("/api/auth/test")).permitAll()
.requestMatchers(new AntPathRequestMatcher("/h2-console/**")).permitAll()
.anyRequest().authenticated()
Expand Down

0 comments on commit a1cfdb9

Please sign in to comment.