From eb8ff2b9146afc360504738581e00c83936fd63b Mon Sep 17 00:00:00 2001 From: HyunSu1768 Date: Tue, 7 May 2024 22:43:14 +0900 Subject: [PATCH] =?UTF-8?q?feat=20::=20=EB=B0=B0=ED=8F=AC=20=EC=95=84?= =?UTF-8?q?=EC=9D=B4=EB=94=94=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../domain/deploy/adapter/dto/response/SimpleDeployResponse.kt | 2 ++ .../deploy/application/service/GetAllDeployInTeamService.kt | 1 + 2 files changed, 3 insertions(+) diff --git a/src/main/kotlin/xquare/app/xquareinfra/domain/deploy/adapter/dto/response/SimpleDeployResponse.kt b/src/main/kotlin/xquare/app/xquareinfra/domain/deploy/adapter/dto/response/SimpleDeployResponse.kt index e293a72..7b0fad9 100644 --- a/src/main/kotlin/xquare/app/xquareinfra/domain/deploy/adapter/dto/response/SimpleDeployResponse.kt +++ b/src/main/kotlin/xquare/app/xquareinfra/domain/deploy/adapter/dto/response/SimpleDeployResponse.kt @@ -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 diff --git a/src/main/kotlin/xquare/app/xquareinfra/domain/deploy/application/service/GetAllDeployInTeamService.kt b/src/main/kotlin/xquare/app/xquareinfra/domain/deploy/application/service/GetAllDeployInTeamService.kt index 7103037..f687712 100644 --- a/src/main/kotlin/xquare/app/xquareinfra/domain/deploy/application/service/GetAllDeployInTeamService.kt +++ b/src/main/kotlin/xquare/app/xquareinfra/domain/deploy/application/service/GetAllDeployInTeamService.kt @@ -23,6 +23,7 @@ class GetAllDeployInTeamService( return SimpleDeployListResponse( deployList.map { SimpleDeployResponse( + deployId = it.id!!, deployName = it.deployName, repository = it.repository, deployStatus = it.deployStatus