Files

7 lines
285 B
Ruby
Raw Permalink Normal View History

2023-04-15 10:14:26 +02:00
if Redmine::Plugin.installed? :baupm_core
RedmineApp::Application.routes.draw do
get '/manifest.json', :controller => 'manifest', :action => 'index', :as => 'manifest_json'
2023-12-03 16:59:01 +01:00
get '/_healthcheck', :controller => 'healthcheck', :action => 'index', :as => 'healthcheck'
2023-04-15 10:14:26 +02:00
end
end