From 0e3acb1bd25fd21cc52413d70c219ac3b56a876f Mon Sep 17 00:00:00 2001 From: Ignacio Perez Date: Mon, 20 Jan 2025 16:11:13 -0300 Subject: [PATCH] Test --- app/controllers/api/v1/health_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/api/v1/health_controller.rb b/app/controllers/api/v1/health_controller.rb index 3ee2b98e..8354b410 100644 --- a/app/controllers/api/v1/health_controller.rb +++ b/app/controllers/api/v1/health_controller.rb @@ -7,7 +7,7 @@ class HealthController < API::V1::APIController skip_after_action :verify_authorized def status - render json: { online: true, test: true } + render json: { online: true } end end end