-
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.
feat: Add isMeMissionUploadedToday field And Rename IsMeUploadedToday…
… as isMeSurvivalUploadedToday from DaytimePageResponse
- Loading branch information
Showing
6 changed files
with
49 additions
and
7 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: 10 additions & 0 deletions
10
post/src/main/java/com/oing/dto/response/MissionUploadStatusResponse.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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package com.oing.dto.response; | ||
|
||
import io.swagger.v3.oas.annotations.media.Schema; | ||
|
||
@Schema(description = "회원 미션 게시글 업로드 여부 응답") | ||
public record MissionUploadStatusResponse( | ||
@Schema(description = "회원 미션 게시글 업로드 여부", example = "true") | ||
boolean isMeMissionUploadedToday | ||
) { | ||
} |
3 changes: 1 addition & 2 deletions
3
post/src/main/java/com/oing/dto/response/SurvivalUploadStatusResponse.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,11 +1,10 @@ | ||
package com.oing.dto.response; | ||
|
||
import com.oing.domain.Reaction; | ||
import io.swagger.v3.oas.annotations.media.Schema; | ||
|
||
@Schema(description = "회원 생존신고 게시글 업로드 여부 응답") | ||
public record SurvivalUploadStatusResponse( | ||
@Schema(description = "회원 생존신고 게시글 업로드 여부", example = "true") | ||
boolean isMeUploadedToday | ||
boolean isMeSurvivalUploadedToday | ||
) { | ||
} |
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