Skip to content

Commit

Permalink
풀 리퀘스트 병합 #216
Browse files Browse the repository at this point in the history
fix: 필터 체인 수정
  • Loading branch information
daeundada authored May 14, 2024
2 parents 32225ed + ceaf802 commit 6886587
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
.sessionManagement(session -> session.sessionCreationPolicy(SessionCreationPolicy.STATELESS))
.authorizeHttpRequests(auth -> auth
.requestMatchers("/api/schedulers/**").authenticated()
.requestMatchers("auth/api/comments/**").authenticated()
.anyRequest().permitAll())
.addFilterBefore(jwtAuthorizationFilter(), UsernamePasswordAuthenticationFilter.class);

Expand Down

0 comments on commit 6886587

Please sign in to comment.