Skip to content

Commit

Permalink
Merge branch 'feature/alarm-update' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeongh00 committed Jan 21, 2024
2 parents 3702a65 + 1059216 commit c8a86cd
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 @@ -9,6 +9,7 @@
@Jacksonized
public class AttendInfo {

private Long curriculumId;
private String curriculumName;
private Boolean isAttended;
private String date;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ public static AttendInfo toInfoResponse(Boolean isAttended, Curriculum curriculu
String formattedDate = curriculum.getStartTime().format(formatter);

AttendInfo attendInfo = AttendInfo.builder()
.curriculumId(curriculum.getId())
.curriculumName(curriculum.getCurriculumName())
.isAttended(isAttended)
.date(formattedDate)
Expand Down

0 comments on commit c8a86cd

Please sign in to comment.