Skip to content

Commit

Permalink
fix :: v2 필드 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
HyunSu1768 committed Jul 31, 2024
1 parent 3982f79 commit f9971cb
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 @@ -10,5 +10,6 @@ data class DeployDetailsResponse(
val repository: String,
val projectRootDir: String,
val deployStatus: DeployStatus,
val githubFullUrl: String
val githubFullUrl: String,
val isV2: Boolean
)
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ class GetDeployDetailsService(
projectRootDir = deploy.projectRootDir,
deployStatus = deploy.deployStatus,
deployName = deploy.deployName,
githubFullUrl = "https://github.com/${deploy.organization}/${deploy.repository}"
githubFullUrl = "https://github.com/${deploy.organization}/${deploy.repository}",
isV2 = deploy.isV2
)
}
}

0 comments on commit f9971cb

Please sign in to comment.