Skip to content

Commit

Permalink
feat :: response 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
HyunSu1768 committed Jun 19, 2024
1 parent 6138a5d commit 9c0e9ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@ data class GetContainerDetailsResponse(
val repository: String,
val domain: String,
val lastDeploy: LocalDateTime,
val containerStatus: ContainerStatus
val containerStatus: ContainerStatus,
val containerName: String
)
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ class GetContainerDetailsService(
domain = ContainerUtil.generateDomain(container),
lastDeploy = container.lastDeploy,
containerStatus = ContainerStatus.RUNNING, // TODO:: 실제 상태 조회 로직 작성,
teamNameKo = deploy.team.teamNameKo

teamNameKo = deploy.team.teamNameKo,
containerName = "${deploy.deployName}-${deploy.deployType}-${container.containerEnvironment}"
)
}
}

0 comments on commit 9c0e9ba

Please sign in to comment.