Skip to content

Commit

Permalink
fix: isAnonymous 필드를 추가한다
Browse files Browse the repository at this point in the history
  • Loading branch information
devbelly committed Sep 2, 2024
1 parent 473ce21 commit d72e2c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ data class UpdateRecruitmentRequest(
val type: RecruitmentType,
val isOnline: Boolean,
val isOngoing: Boolean,
val isAnonymous: Boolean,
val limit: Int,
val startDateTime: LocalDateTime,
val endDateTime: LocalDateTime,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ class Recruitment(
type = request.type
isOnline = request.isOnline
isOngoing = request.isOngoing
isAnonymous = request.isAnonymous
limit = RecruitmentNumber(request.limit)
recruitable = request.recruitable
startDateTime = request.startDateTime
Expand Down

0 comments on commit d72e2c3

Please sign in to comment.