Skip to content

Commit

Permalink
refactor :: reissue 권한 허용
Browse files Browse the repository at this point in the history
  • Loading branch information
4mjeo committed Feb 20, 2024
1 parent 2b9e1c2 commit 5ef13b5
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ class SecurityConfig(
.authorizeRequests()
.antMatchers(HttpMethod.POST, "/auth/login").permitAll()
.antMatchers(HttpMethod.POST, "/auth").permitAll()
.antMatchers(HttpMethod.POST, "/auth/reissue").permitAll()
.antMatchers(HttpMethod.GET, "/auth/duplicate").permitAll()
.antMatchers(HttpMethod.PUT, "/deploy/config").permitAll()
.antMatchers(HttpMethod.GET, "/project/list").permitAll()
Expand Down

0 comments on commit 5ef13b5

Please sign in to comment.