From ad27b4b5e39f7e721ca80ecc1d5ce7cbbc868d4f Mon Sep 17 00:00:00 2001 From: magdev Date: Sat, 6 May 2023 16:03:38 +0200 Subject: [PATCH] disabled healthcheck route --- config/routes.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/routes.rb b/config/routes.rb index 20723fa..0105ba2 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,6 +1,6 @@ if Redmine::Plugin.installed? :baupm_core RedmineApp::Application.routes.draw do get '/manifest.json', :controller => 'manifest', :action => 'index', :as => 'manifest_json' - get '/healthcheck', :controller => 'healthcheck', :action => 'index', :as => 'healthcheck' + #get '/healthcheck', :controller => 'healthcheck', :action => 'index', :as => 'healthcheck' end end