about summary refs log tree commit diff
path: root/app/controllers/health_controller.rb
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2021-04-06 11:17:52 +0200
committerGitHub <noreply@github.com>2021-04-06 11:17:52 +0200
commitdf326b8b5c0659edb2aca77690a892f228b0e099 (patch)
tree0d6b014047fa80270377b83e313aa882923c9429 /app/controllers/health_controller.rb
parent39b9a0619ab4ba68ed429152153cf0dbbfcd5a5a (diff)
parent5c225b03db280c94dc3519dc5bad2cac86487e9b (diff)
Merge pull request #1519 from ClearlyClaire/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to 'app/controllers/health_controller.rb')
-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