Skip to content

Commit

Permalink
Fix: 수정 #147
Browse files Browse the repository at this point in the history
  • Loading branch information
ajung7038 committed Dec 22, 2024
1 parent 10759b8 commit ed016cf
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified .DS_Store
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
.csrf(AbstractHttpConfigurer::disable)
.authorizeHttpRequests(request -> {
request.requestMatchers(
// antMatcher("/health")
// antMatcher("/health") .
antMatcher("/**")
).permitAll()
.anyRequest().authenticated();
Expand Down

0 comments on commit ed016cf

Please sign in to comment.