feat: 큐레이션 가격 미정 플래그 추가 - #686
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
개요
큐레이션 가격에서 무료(
entryFee=0)와 가격 미정(is_tbc=true)을 구분하는 스펙 필드를 추가합니다.변경 내용
WHISKY_TASTING_EVENT,PROGRAM의 requestSpec/responseSpec에 optional booleanis_tbc를 추가했습니다.is_tbc를x-feed로 노출합니다.응답 형태 예시
{ "entryFee": 0, "is_tbc": false }is_tbc=false와entryFee=0은 무료,is_tbc=true은 가격 미정입니다.호환성·데이터
is_tbc는 optional이며 조건부 required/교차 검증을 추가하지 않습니다.curation_extension.payload와feed_payload를 자동 변환하거나 기존 행에 값을 채우지 않습니다. 기존 payload는 필드 부재 상태로 유지됩니다.검증
./gradlew :bottlenote-mono:test --tests 'app.bottlenote.curation.*'\n\n## 관련 이슈\n- [BE] 큐레이션 가격 미정(is_tbc) 스펙 추가 workspace#359