Skip to content

Commit

Permalink
Merge pull request #56 from Team-Sopetit/chore/#53-security-path-add
Browse files Browse the repository at this point in the history
[ADD] 권한 허용 경로 추가
  • Loading branch information
thguss authored Jan 11, 2024
2 parents d8cf678 + 3d23e09 commit 9c5a722
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
authorizeHttpRequests
.requestMatchers(new AntPathRequestMatcher("/api/v1/auth/**")).permitAll()
.requestMatchers(new AntPathRequestMatcher("/api/v1/test")).permitAll()
.requestMatchers(new AntPathRequestMatcher("/api/v1/routines/daily/themes")).permitAll()
.requestMatchers(new AntPathRequestMatcher("/api/v1/routines/daily")).permitAll()
.requestMatchers(new AntPathRequestMatcher("/api/v1/dolls/image/{type}")).permitAll()
.requestMatchers(new AntPathRequestMatcher("/error")).permitAll()
.requestMatchers(new AntPathRequestMatcher("/v3/api-docs/**")).permitAll()
.requestMatchers(new AntPathRequestMatcher("/swagger-ui/**")).permitAll()
Expand Down

0 comments on commit 9c5a722

Please sign in to comment.