-
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 pull request #486 from tukcomCD2024/fix/group_capsule_open-B-#483
fix : 그룹 캡슐 개봉 로직 수정 #483
- Loading branch information
Showing
5 changed files
with
38 additions
and
24 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
11 changes: 10 additions & 1 deletion
11
...rchive/core/domain/capsule/group_capsule/data/response/GroupCapsuleOpenStateResponse.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,10 +1,19 @@ | ||
package site.timecapsulearchive.core.domain.capsule.group_capsule.data.response; | ||
|
||
import io.swagger.v3.oas.annotations.media.Schema; | ||
import site.timecapsulearchive.core.domain.capsule.group_capsule.data.dto.CapsuleOpenStatus; | ||
|
||
@Schema(description = "그룹 캡슐 개봉 상태 응답") | ||
public record GroupCapsuleOpenStateResponse( | ||
|
||
@Schema(description = "캡슐 개봉 상태") | ||
CapsuleOpenStatus capsuleOpenStatus, | ||
String statusMessage | ||
|
||
@Schema(description = "캡슐 개봉 상태 메시지") | ||
String statusMessage, | ||
|
||
@Schema(description = "현재 요청한 사용자의 개별적인 캡슐 개봉 상태") | ||
boolean isIndividuallyOpened | ||
) { | ||
|
||
} |
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