Skip to content

Commit

Permalink
Merge pull request #110 from Leets-Official/feat/#109/출석-상태-반환
Browse files Browse the repository at this point in the history
Feat #110 당일 출석 상태 함께 반환
  • Loading branch information
hyxklee authored Jan 18, 2025
2 parents bd631bc + d2074b0 commit a480acb
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 @@ -12,6 +12,7 @@ public class AttendanceDTO {
public record Main(
Integer attendanceRate,
String title,
Status status,
LocalDateTime start,
LocalDateTime end,
String location
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ public interface AttendanceMapper {
@Mappings({
@Mapping(target = "attendanceRate", source = "user.attendanceRate"),
@Mapping(target = "title", source = "attendance.meeting.title"),
@Mapping(target = "status", source = "attendance.status"),
@Mapping(target = "start", source = "attendance.meeting.start"),
@Mapping(target = "end", source = "attendance.meeting.end"),
@Mapping(target = "location", source = "attendance.meeting.location"),
Expand Down

0 comments on commit a480acb

Please sign in to comment.