Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@

@Builder(access = PRIVATE)
public record TeamInformGetResponse(
@NotNull String name,
@NotNull String teamName,
@NotNull University university,
@NotNull String iconImageUrl,
@NotNull LocalDate namingUpdatedAt
) {

public static TeamInformGetResponse of(final Team team, final String iconImageUrl) {
return TeamInformGetResponse.builder()
.name(team.getName())
.teamName(team.getName())
.university(team.getUniv())
.iconImageUrl(iconImageUrl)
.namingUpdatedAt(team.getNamingUpdatedAt())
Expand Down