-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[feat] FAQ 검색기능 추가 #222
[feat] FAQ 검색기능 추가 #222
Conversation
@Override | ||
@DeleteMapping("/{faqId}/keyword") | ||
public ApiResponse<?> deleteKeyword(@PathVariable @ExistFaq Long faqId, @RequestParam Long searchKeywordId) { | ||
return ApiResponse.onSuccess(faqService.removeKeyword(faqId, searchKeywordId)); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
해당 API는 키워드를 통해 FAQ를 지우는 메소드인걸까요??
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FAQ와 연결된 searchKeyword mapping을 지우는 메소드 입니다!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
검색 기능 좋네요! 고생하셨습니다 :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수고 많으셨습니다!!
개요
#213
FAQ 검색기능이 필요하여 추가하였습니다.
PR
어떤 변경 사항이 있나요?
Checklist