Skip to content

Commit

Permalink
feat: RecipeHandlerInterceptor에 대한 pathpattern 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hanueleee committed Aug 15, 2023
1 parent 842f415 commit 413fa57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/main/java/com/funeat/common/WebConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public void addInterceptors(final InterceptorRegistry registry) {
.addPathPatterns("/api/products/**/reviews/**")
.addPathPatterns("/api/members/**");
registry.addInterceptor(recipeHandlerInterceptor)
.addPathPatterns("/api/recipes");
.addPathPatterns("/api/recipes/**");
}

@Override
Expand Down

0 comments on commit 413fa57

Please sign in to comment.