Skip to content

Commit

Permalink
feat :: 배포 아이디 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
HyunSu1768 committed May 7, 2024
1 parent b53ed55 commit eb8ff2b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
package xquare.app.xquareinfra.domain.deploy.adapter.dto.response

import xquare.app.xquareinfra.domain.deploy.domain.DeployStatus
import java.util.UUID

data class SimpleDeployResponse(
val deployId: UUID,
val deployName: String,
val repository: String,
val deployStatus: DeployStatus
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ class GetAllDeployInTeamService(
return SimpleDeployListResponse(
deployList.map {
SimpleDeployResponse(
deployId = it.id!!,
deployName = it.deployName,
repository = it.repository,
deployStatus = it.deployStatus
Expand Down

0 comments on commit eb8ff2b

Please sign in to comment.