about summary refs log tree commit diff
path: root/config/routes.rb
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 /config/routes.rb
parent845f959cb80647a44c90735ca45dd11ccc348f8f (diff)
Change health check (#15988)
Diffstat (limited to 'config/routes.rb')
-rw-r--r--config/routes.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb
index 6814dc61e..8ec67113b 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -10,7 +10,7 @@ Rails.application.routes.draw do
 
   mount LetterOpenerWeb::Engine, at: 'letter_opener' if Rails.env.development?
 
-  health_check_routes
+  get 'health', to: 'health#show'
 
   authenticate :user, lambda { |u| u.admin? } do
     mount Sidekiq::Web, at: 'sidekiq', as: :sidekiq