Fixed and remove git source from build
Some checks failed
continuous-integration/drone/push Build was killed

This commit is contained in:
2023-03-09 18:55:00 +07:00
parent 84fbf6debc
commit 5efe14c78a
4 changed files with 24 additions and 49 deletions

View File

@@ -33,7 +33,6 @@ class IndexController @Autowired constructor(
service = buildProperties.artifact,
version = buildProperties.version,
date = buildProperties.time.toString(),
commit = buildProperties["commitId"],
authors = authors,
)
return response(response)

View File

@@ -9,7 +9,6 @@ data class ApiInfoResponse(
val service: String,
val version: String,
val date: String,
val commit: String,
val authors: Collection<ApiInfoAuthorResponse> = listOf(),
) : BaseRequestModel