Skip to content

Commit 117acb1

Browse files
committed
fix: gatheringId 제거
1 parent 1e08b24 commit 117acb1

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

tuk-api/src/main/kotlin/nexters/tuk/application/proposal/dto/request/ProposalCommand.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import nexters.tuk.application.proposal.vo.ProposalPurposeInfo
55
class ProposalCommand {
66
data class Propose(
77
val memberId: Long,
8-
val gatheringId: Long?,
98
val purpose: ProposalPurposeInfo
109
)
1110
}

tuk-api/src/main/kotlin/nexters/tuk/ui/proposal/ProposalDto.kt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,11 @@ import nexters.tuk.application.proposal.vo.ProposalPurposeInfo
66
class ProposalDto {
77
class Request {
88
data class Publish(
9-
val gatheringId: Long?,
109
val purpose: ProposalPurposeInfo,
1110
) {
1211
fun toCommand(memberId: Long): ProposalCommand.Propose {
1312
return ProposalCommand.Propose(
1413
memberId = memberId,
15-
gatheringId = gatheringId,
1614
purpose = purpose
1715
)
1816
}

0 commit comments

Comments
 (0)