Adjust health response and auth chain ordering
All checks were successful
build-and-deploy / build-deploy (push) Successful in 27s

This commit is contained in:
androidlover5842
2026-01-26 21:25:17 +05:30
parent 05b8fd409c
commit 398ad93232
2 changed files with 17 additions and 4 deletions

View File

@@ -7,11 +7,11 @@ import org.springframework.web.bind.annotation.RestController
class Health {
@GetMapping("/health")
fun health(): Map<String, String> {
return mapOf("status" to "ok Testing Health..")
return mapOf("status" to "ok", "build" to "2026-01-26-authfix")
}
@GetMapping("/")
fun root(): Map<String, String> {
return mapOf("status" to "Hello World!")
return mapOf("status" to "ok", "build" to "2026-01-26-authfix")
}
}