diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2019-06-20 07:12:30 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2019-06-20 07:12:30 +0000 |
commit | 94c2356f383000cea42072a94b351f79ff4567d4 (patch) | |
tree | a1162b7ee00ddd498d1cb52d3d6299fd9bde9b08 /config/routes.rb | |
parent | 0714ced81572a1501d37bc866855a7f339c3bf03 (diff) | |
download | redmine-94c2356f383000cea42072a94b351f79ff4567d4.tar.gz redmine-94c2356f383000cea42072a94b351f79ff4567d4.zip |
Load changesets and time entries tabs async (#3058).
Patch by Marius BALTEANU.
git-svn-id: http://svn.redmine.org/redmine/trunk@18275 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config/routes.rb')
-rw-r--r-- | config/routes.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb index c6d172ee4..37eb86ecf 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -188,6 +188,7 @@ Rails.application.routes.draw do member do # Used when updating the form of an existing issue patch 'edit', :to => 'issues#edit' + get 'tab/:name', :action => 'issue_tab', :as => 'tab' end collection do match 'bulk_edit', :via => [:get, :post] |