Skip to content

Commit

Permalink
fix: 떡국 완성하기 API가 인가 필터를 타지 않는 버그 수정 (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
mungmnb777 authored Feb 8, 2024
1 parent ecf357f commit 397670c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public RequestMatcher authEndpoints() {
public RequestMatcher mainPageEndPoints() {
return new OrRequestMatcher(
new AntPathRequestMatcher("/api/v1/tteokguk/new/**"),
new AntPathRequestMatcher("/api/v1/tteokguk/completion/**"),
new AntPathRequestMatcher("/api/v1/tteokguk/completion/**", HttpMethod.GET.toString()),
new AntPathRequestMatcher("/api/v1/tteokguk/random/**")
);
}
Expand Down

0 comments on commit 397670c

Please sign in to comment.