forked from codesquad-members-2023/issue-tracker-max
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
[be] 이슈 수정, 이슈상태 수정,이슈 옵션 수정
- Loading branch information
Showing
15 changed files
with
381 additions
and
19 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
10 changes: 10 additions & 0 deletions
10
be/issue/src/main/java/codesquad/issueTracker/issue/dto/ModifyAssigneeRequestDto.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 codesquad.issueTracker.issue.dto; | ||
|
||
import java.util.List; | ||
|
||
import lombok.Getter; | ||
|
||
@Getter | ||
public class ModifyAssigneeRequestDto { | ||
private List<Long> assignees; | ||
} |
12 changes: 12 additions & 0 deletions
12
be/issue/src/main/java/codesquad/issueTracker/issue/dto/ModifyIssueContentRequestDto.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,12 @@ | ||
package codesquad.issueTracker.issue.dto; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
|
||
@Getter | ||
@AllArgsConstructor | ||
@NoArgsConstructor | ||
public class ModifyIssueContentRequestDto { | ||
private String content; | ||
} |
10 changes: 10 additions & 0 deletions
10
be/issue/src/main/java/codesquad/issueTracker/issue/dto/ModifyIssueContentResponseDto.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 codesquad.issueTracker.issue.dto; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Getter; | ||
|
||
@Getter | ||
@AllArgsConstructor | ||
public class ModifyIssueContentResponseDto { | ||
private String modifiedContent; | ||
} |
8 changes: 8 additions & 0 deletions
8
be/issue/src/main/java/codesquad/issueTracker/issue/dto/ModifyIssueMilestoneDto.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,8 @@ | ||
package codesquad.issueTracker.issue.dto; | ||
|
||
import lombok.Getter; | ||
|
||
@Getter | ||
public class ModifyIssueMilestoneDto { | ||
private Long milestone; | ||
} |
14 changes: 14 additions & 0 deletions
14
be/issue/src/main/java/codesquad/issueTracker/issue/dto/ModifyIssueStatusRequestDto.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,14 @@ | ||
package codesquad.issueTracker.issue.dto; | ||
|
||
import java.util.List; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Getter; | ||
|
||
@Getter | ||
@AllArgsConstructor | ||
public class ModifyIssueStatusRequestDto { | ||
private String status; | ||
private List<Long> issueIds; | ||
|
||
} |
17 changes: 17 additions & 0 deletions
17
be/issue/src/main/java/codesquad/issueTracker/issue/dto/ModifyIssueTitleRequest.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,17 @@ | ||
package codesquad.issueTracker.issue.dto; | ||
|
||
import javax.validation.constraints.NotBlank; | ||
import javax.validation.constraints.NotNull; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
|
||
@Getter | ||
@AllArgsConstructor | ||
@NoArgsConstructor | ||
public class ModifyIssueTitleRequest { | ||
@NotNull(message = "제목을 입력해주세요.") | ||
@NotBlank(message = "공백은 입력할 수 없습니다.") | ||
private String title; | ||
} |
10 changes: 10 additions & 0 deletions
10
be/issue/src/main/java/codesquad/issueTracker/issue/dto/ModifyIssueTitleResponse.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 codesquad.issueTracker.issue.dto; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Getter; | ||
|
||
@Getter | ||
@AllArgsConstructor | ||
public class ModifyIssueTitleResponse { | ||
private String modifiedTitle; | ||
} |
11 changes: 11 additions & 0 deletions
11
be/issue/src/main/java/codesquad/issueTracker/issue/dto/ModifyLabelRequestDto.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,11 @@ | ||
package codesquad.issueTracker.issue.dto; | ||
|
||
import java.util.List; | ||
|
||
import lombok.Getter; | ||
|
||
@Getter | ||
public class ModifyLabelRequestDto { | ||
private List<Long> labels; | ||
|
||
} |
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
Oops, something went wrong.