-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
merge: Polling에서 사용하지 않는 바디 정보 제거 #394
- Loading branch information
Showing
11 changed files
with
22 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 1 addition & 9 deletions
10
backend/src/main/java/ddangkong/facade/room/balance/roomvote/dto/VoteFinishedResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,6 @@ | ||
package ddangkong.facade.room.balance.roomvote.dto; | ||
|
||
import ddangkong.domain.room.member.Member; | ||
import ddangkong.facade.room.member.dto.MasterResponse; | ||
|
||
public record VoteFinishedResponse( | ||
boolean isFinished, | ||
MasterResponse master | ||
boolean isFinished | ||
) { | ||
|
||
public VoteFinishedResponse(boolean isFinished, Member master) { | ||
this(isFinished, new MasterResponse(master)); | ||
} | ||
} |
10 changes: 1 addition & 9 deletions
10
backend/src/main/java/ddangkong/facade/room/dto/InitialRoomResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,6 @@ | ||
package ddangkong.facade.room.dto; | ||
|
||
import ddangkong.domain.room.member.Member; | ||
import ddangkong.facade.room.member.dto.MasterResponse; | ||
|
||
public record InitialRoomResponse( | ||
boolean isInitial, | ||
MasterResponse master | ||
boolean isInitial | ||
) { | ||
|
||
public InitialRoomResponse(boolean isInitialRoom, Member master) { | ||
this(isInitialRoom, new MasterResponse(master)); | ||
} | ||
} |
10 changes: 1 addition & 9 deletions
10
backend/src/main/java/ddangkong/facade/room/dto/RoundFinishedResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,7 @@ | ||
package ddangkong.facade.room.dto; | ||
|
||
import ddangkong.domain.room.member.Member; | ||
import ddangkong.facade.room.member.dto.MasterResponse; | ||
|
||
public record RoundFinishedResponse( | ||
boolean isRoundFinished, | ||
boolean isGameFinished, | ||
MasterResponse master | ||
boolean isGameFinished | ||
) { | ||
|
||
public RoundFinishedResponse(boolean isRoundFinished, boolean isGameFinished, Member master) { | ||
this(isRoundFinished, isGameFinished, new MasterResponse(master)); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters