From 1557701e17103098c65fe82665b29be8d2cc3b3a Mon Sep 17 00:00:00 2001 From: Go MAEDA Date: Tue, 4 Feb 2025 09:54:57 +0000 Subject: [PATCH] Fix RuboCop Style/HashSyntax (#42008). git-svn-id: https://svn.redmine.org/redmine/trunk@23488 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- config/routes.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/routes.rb b/config/routes.rb index c6572761a..03dc70740 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -414,7 +414,7 @@ Rails.application.routes.draw do # Reveal health status on /up that returns 200 if the app boots with no exceptions, otherwise 500. # Can be used by load balancers and uptime monitors to verify that the app is live. - get "up" => "rails/health#show", as: :rails_health_check + get "up" => "rails/health#show", :as => :rails_health_check Redmine::Plugin.directory.glob("*/config/routes.rb").sort.each do |plugin_routes_path| instance_eval(plugin_routes_path.read, plugin_routes_path.to_s)