mirror of
https://github.com/anteo/redmine_custom_workflows.git
synced 2026-01-26 08:14:20 +00:00
10 lines
212 B
Ruby
10 lines
212 B
Ruby
if Redmine::VERSION::MAJOR >= 2
|
|
RedmineApp::Application.routes.draw do
|
|
resources :custom_workflows
|
|
end
|
|
else
|
|
ActionController::Routing::Routes.draw do |map|
|
|
map.resources :custom_workflows
|
|
end
|
|
end
|