We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6553c35 + 14b4885 commit bcb5320Copy full SHA for bcb5320
src/main/java/com/jajaja/domain/team/dto/response/TeamListDto.java
@@ -11,15 +11,15 @@ public record TeamListDto(
11
int id,
12
String nickname,
13
String profileUrl,
14
- LocalDateTime createdAt
+ LocalDateTime expireAt
15
) {
16
17
public static TeamListDto of(Team team, MemberInfoResponseDto memberInfo) {
18
return TeamListDto.builder()
19
.id(team.getId().intValue())
20
.nickname(memberInfo.name())
21
.profileUrl(memberInfo.profileUrl())
22
- .createdAt(team.getCreatedAt())
+ .expireAt(team.getExpireAt())
23
.build();
24
}
25
0 commit comments