From 92883b1e4a8ce20cc565332ac4b70e6df6ec650a Mon Sep 17 00:00:00 2001 From: HyunSu1768 Date: Tue, 7 May 2024 23:22:22 +0900 Subject: [PATCH] =?UTF-8?q?feat=20::=20response=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../deploy/adapter/dto/response/DeployDetailsResponse.kt | 1 + .../deploy/application/service/GetDeployDetailsService.kt | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/kotlin/xquare/app/xquareinfra/domain/deploy/adapter/dto/response/DeployDetailsResponse.kt b/src/main/kotlin/xquare/app/xquareinfra/domain/deploy/adapter/dto/response/DeployDetailsResponse.kt index 016bce1..a7a7546 100644 --- a/src/main/kotlin/xquare/app/xquareinfra/domain/deploy/adapter/dto/response/DeployDetailsResponse.kt +++ b/src/main/kotlin/xquare/app/xquareinfra/domain/deploy/adapter/dto/response/DeployDetailsResponse.kt @@ -3,6 +3,7 @@ package xquare.app.xquareinfra.domain.deploy.adapter.dto.response import xquare.app.xquareinfra.domain.deploy.domain.DeployStatus data class DeployDetailsResponse( + val deployName: String, val teamNameEn: String, val teamNameKo: String, val oneLineDescription: String, diff --git a/src/main/kotlin/xquare/app/xquareinfra/domain/deploy/application/service/GetDeployDetailsService.kt b/src/main/kotlin/xquare/app/xquareinfra/domain/deploy/application/service/GetDeployDetailsService.kt index 5d7987c..87da292 100644 --- a/src/main/kotlin/xquare/app/xquareinfra/domain/deploy/application/service/GetDeployDetailsService.kt +++ b/src/main/kotlin/xquare/app/xquareinfra/domain/deploy/application/service/GetDeployDetailsService.kt @@ -23,7 +23,8 @@ class GetDeployDetailsService( oneLineDescription = deploy.oneLineDescription, repository = deploy.repository, projectRootDir = deploy.projectRootDir, - deployStatus = deploy.deployStatus + deployStatus = deploy.deployStatus, + deployName = deploy.deployName ) } } \ No newline at end of file