AntiqueAuthBackend / app /controllers /health_controller.rb
hatamo's picture
Change health endpoints to return plaintext instead of JSON
2355caa
class HealthController < ActionController::API
def up
render plain: 'ok', status: :ok
end
def health
render plain: 'healthy', status: :ok
end
end