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
committerStarfall <us@starfall.systems>2021-04-11 12:17:56 -0500
commitec2bab4b78d638a5a8c6a6a525b176776685f59c (patch)
tree5d76e1ffa2bc2ac27206a86e0a9a0cceb58578cc /app/controllers
parent845f959cb80647a44c90735ca45dd11ccc348f8f (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