File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
tuk-api/src/main/kotlin/nexters/tuk/application/gathering Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ import nexters.tuk.contract.ErrorType
66import nexters.tuk.domain.gathering.*
77import org.springframework.stereotype.Service
88import org.springframework.transaction.annotation.Transactional
9- import java.time.LocalDateTime
109
1110@Service
1211class GatheringMemberService (
@@ -39,7 +38,8 @@ class GatheringMemberService(
3938 GatheringMemberResponse .MemberGatherings (
4039 id = memberGathering.gathering.id,
4140 name = memberGathering.gathering.name,
42- lastPushedAt = memberGathering.gathering.lastPushedAt ? : LocalDateTime .now(),
41+ lastPushedAt = memberGathering.gathering.lastPushedAt
42+ ? : memberGathering.gathering.createdAt,
4343 )
4444 }.sortedBy { it.name }
4545 }
You can’t perform that action at this time.
0 commit comments