Skip to content

Commit

Permalink
[FEAT] GroupController + Service FIX + WebSocket Config FIX + (위치 공유 …
Browse files Browse the repository at this point in the history
…on/off 추가)
  • Loading branch information
jinjoo-lab committed Oct 16, 2023
1 parent 3efb263 commit fe89141
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ public class Group {
cascade = {CascadeType.PERSIST, CascadeType.MERGE})
private List<GroupMember> groupMembers = new ArrayList<>();

public Group(String name, String groupImage, UUID leader) {
public Group(String name, String groupImage, UUID leaderId) {
this.name = name;
this.groupImage = groupImage;
this.leaderId = leader;
this.leaderId = leaderId;
}
}

0 comments on commit fe89141

Please sign in to comment.