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
committerGitHub <noreply@github.com>2021-04-03 02:39:04 +0200
commit82cce18227419a55a12e34652a944fd612a86891 (patch)
tree6c026a88f9761d8f9bea86743437c76b6647e54a /config/routes.rb
parentabad99fa103246075f364278dfb43a5ed0784075 (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 780a52b0c..fa1138868 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