Skip to content

Commit

Permalink
Merge pull request #116 from IxxP-Girls/modify
Browse files Browse the repository at this point in the history
Fix: 모든 options 메소드 허락
  • Loading branch information
diddnwjd committed Mar 11, 2024
2 parents 5ec2f3e + 434204a commit 1963653
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
.antMatchers("/admin/login").permitAll()
.antMatchers(HttpMethod.GET,"/popup/**").permitAll()
.antMatchers(HttpMethod.GET,"/posts/**").permitAll()
.antMatchers(HttpMethod.OPTIONS, "/popup/**").permitAll()
.antMatchers(HttpMethod.OPTIONS, "/**").permitAll()
.anyRequest().authenticated()
);

Expand Down

0 comments on commit 1963653

Please sign in to comment.