Skip to content

Commit

Permalink
[fix] security 허용 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
wjdtkdgns committed Jul 31, 2023
1 parent f256d45 commit c0fc12e
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
.permitAll()
.mvcMatchers("/auth/token/refresh")
.permitAll()
.mvcMatchers("/user/image")
.permitAll()
.mvcMatchers("/**/health/**")
.permitAll()
.mvcMatchers("/example/**")
Expand Down

0 comments on commit c0fc12e

Please sign in to comment.