Skip to content

Commit

Permalink
feat :: response 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
HyunSu1768 committed Jun 18, 2024
1 parent 7b582b6 commit 6138a5d
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 @@ -9,5 +9,6 @@ data class DeployDetailsResponse(
val oneLineDescription: String,
val repository: String,
val projectRootDir: String,
val deployStatus: DeployStatus
val deployStatus: DeployStatus,
val githubFullUrl: String
)
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ class GetDeployDetailsService(
repository = deploy.repository,
projectRootDir = deploy.projectRootDir,
deployStatus = deploy.deployStatus,
deployName = deploy.deployName
deployName = deploy.deployName,
githubFullUrl = "https://github.com/${deploy.organization}/${deploy.repository}"
)
}
}

0 comments on commit 6138a5d

Please sign in to comment.