Skip to content

Commit

Permalink
!hotfix: security config 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
daeun084 committed Jul 29, 2024
1 parent a7e721d commit b4c81ad
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
authorize -> authorize
.requestMatchers(request -> request.getRequestURI().startsWith("/swagger-ui")).permitAll()
.requestMatchers(request -> request.getRequestURI().startsWith("/v3/api-docs")).permitAll()
.requestMatchers(request -> request.getRequestURI().startsWith("/auth/sign-up")).permitAll()
.requestMatchers(request -> request.getRequestURI().startsWith("/auth/sign-in")).permitAll()
.requestMatchers(request -> request.getRequestURI().startsWith("/api/v1/auth/sign-up")).permitAll()
.requestMatchers(request -> request.getRequestURI().startsWith("/api/v1/auth/sign-in")).permitAll()
.anyRequest().authenticated()
);
http.addFilterBefore(
Expand Down

0 comments on commit b4c81ad

Please sign in to comment.