Skip to content

Commit

Permalink
fix :: container details response 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
HyunSu1768 committed Aug 1, 2024
1 parent 2016b25 commit 92deb70
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ data class GetContainerDetailsResponse(
val domain: String,
val lastDeploy: LocalDateTime,
val containerStatus: ContainerStatus,
val containerName: String
val containerName: String,
val isV2: Boolean
)
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ class GetContainerDetailsService(
lastDeploy = container.lastDeploy,
containerStatus = ContainerStatus.RUNNING, // TODO:: 실제 상태 조회 로직 작성,
teamNameKo = deploy.team.teamNameKo,
containerName = "${deploy.deployName}-${deploy.deployType}-${container.containerEnvironment}"
containerName = "${deploy.deployName}-${deploy.deployType}-${container.containerEnvironment}",
isV2 = deploy.isV2
)
}
}

0 comments on commit 92deb70

Please sign in to comment.