Skip to content

Commit

Permalink
feat :: response 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
HyunSu1768 committed May 7, 2024
1 parent e25d800 commit 92883b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ class GetDeployDetailsService(
oneLineDescription = deploy.oneLineDescription,
repository = deploy.repository,
projectRootDir = deploy.projectRootDir,
deployStatus = deploy.deployStatus
deployStatus = deploy.deployStatus,
deployName = deploy.deployName
)
}
}

0 comments on commit 92883b1

Please sign in to comment.