about summary refs log tree commit diff
path: root/app/controllers
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2021-04-03 02:39:04 +0200
committerGitHub <noreply@github.com>2021-04-03 02:39:04 +0200
commit82cce18227419a55a12e34652a944fd612a86891 (patch)
tree6c026a88f9761d8f9bea86743437c76b6647e54a /app/controllers
parentabad99fa103246075f364278dfb43a5ed0784075 (diff)
Change health check (#15988)
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/health_controller.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/app/controllers/health_controller.rb b/app/controllers/health_controller.rb
new file mode 100644
index 000000000..2a22a0557
--- /dev/null
+++ b/app/controllers/health_controller.rb
@@ -0,0 +1,7 @@
+# frozen_string_literal: true
+
+class HealthController < ActionController::Base
+  def show
+    render plain: 'OK'
+  end
+end