-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
335 additions
and
64 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
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: 0 additions & 11 deletions
11
layer-api/src/main/java/org/layer/domain/actionItem/dto/DeleteActionItemRequest.java
This file was deleted.
Oops, something went wrong.
6 changes: 6 additions & 0 deletions
6
layer-api/src/main/java/org/layer/domain/actionItem/dto/DeleteActionItemResponse.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,6 @@ | ||
package org.layer.domain.actionItem.dto; | ||
|
||
import io.swagger.v3.oas.annotations.media.Schema; | ||
|
||
public record DeleteActionItemResponse(@Schema(description = "삭제된 액션 아이템 아이디") Long actionItemId) { | ||
} |
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
20 changes: 20 additions & 0 deletions
20
layer-api/src/main/java/org/layer/domain/actionItem/dto/SpaceActionItemResponse.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,20 @@ | ||
package org.layer.domain.actionItem.dto; | ||
|
||
import io.swagger.v3.oas.annotations.media.Schema; | ||
import jakarta.validation.constraints.NotNull; | ||
import lombok.Builder; | ||
|
||
import java.util.List; | ||
|
||
@Builder | ||
public record SpaceActionItemResponse(@NotNull | ||
@Schema(description = "액션 아이템이 속한 스페이스 ID") | ||
Long spaceId, | ||
@NotNull | ||
@Schema(description = "액션 아이템이 속한 스페이스 이름") | ||
String spaceName, | ||
@NotNull | ||
@Schema(description = "스페이스의 액션아이템 리스트") | ||
List<SpaceActionItemElementResponse> teamActionItemList | ||
) { | ||
} |
4 changes: 0 additions & 4 deletions
4
layer-api/src/main/java/org/layer/domain/actionItem/dto/TeamActionItemResponse.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.