Skip to content

Commit

Permalink
Be (#123)
Browse files Browse the repository at this point in the history
* feat: filter 생성 controller 기능 개발

* feat: 필터 entity 생성

* feat: filter repository 생성

* feat: filter 생성 dto 추가

* feat: filter 생성 converter 기능 개발

* feat: filter model 추가

* feat: filter 생성 서비스 기능 개발

* feat: create filter usecase 추가

* fix: CreateFilterUsecase path 수정

* fix: CreateFilterUsecase path 수정

* fix: 임시 필터 생성 토큰 설정 변경
  • Loading branch information
capDoYeonLee authored Jul 23, 2024
1 parent f81cccf commit d7ecc72
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public void addInterceptors(InterceptorRegistry registry) {
registry
.addInterceptor(memberAuthInterceptor())
.addPathPatterns("/api/**")
.excludePathPatterns("/api/auth/**", "/api/calendar/public/**");
.excludePathPatterns("/api/auth/**", "/api/calendar/public/**", "/api/filter");
registry
.addInterceptor(reissueAuthInterceptor())
.addPathPatterns("/auth/reissue")
Expand Down

0 comments on commit d7ecc72

Please sign in to comment.