Skip to content

Commit

Permalink
fix : 그룹 초대 아이디 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
seokho-1116 committed Jun 6, 2024
1 parent c0a3880 commit edf34ff
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

@Builder
public record GroupInviteSummaryDto(

Long groupInviteId,
Long groupId,
String groupName,
String groupProfileUrl,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
@Schema(description = "초대온 그룹 요약 정보")
public record GroupReceivingInviteSummaryResponse(

@Schema(description = "그룹 초대 아이디")
Long groupInviteId,

@Schema(description = "그룹 아이디")
Long groupId,

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ public Slice<GroupInviteSummaryDto> findGroupReceivingInvitesSlice(
.select(
Projections.constructor(
GroupInviteSummaryDto.class,
groupInvite.id,
group.id,
group.groupName,
group.groupProfileUrl,
Expand Down

0 comments on commit edf34ff

Please sign in to comment.