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 @@ -19,6 +19,7 @@ public record ClubApplicantsResult(
String id,
ApplicationStatus status,
List<ClubQuestionAnswer> answers,
String memo,
LocalDateTime createdAt
) {
public static ClubApplicantsResult of(ClubApplication application, AESCipher cipher) {
Expand All @@ -40,6 +41,7 @@ public static ClubApplicantsResult of(ClubApplication application, AESCipher cip
.id(application.getId())
.status(application.getStatus())
.answers(decryptedAnswers)
.memo(application.getMemo())
.createdAt(application.getCreatedAt())
.build();
}
Expand Down
Loading