summaryrefslogtreecommitdiffstats
path: root/config/routes.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2016-11-18 08:11:11 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2016-11-18 08:11:11 +0000
commit2544fe6e15d48ed8169f7284d8f6de20731771e4 (patch)
treea0dfaeece233ca3d54babaa35b56926715dba5aa /config/routes.rb
parent2b70d977052af13f21e0eb7a719d98a74e210043 (diff)
downloadredmine-2544fe6e15d48ed8169f7284d8f6de20731771e4.tar.gz
redmine-2544fe6e15d48ed8169f7284d8f6de20731771e4.zip
Issue subject is not updated when you select another issue on time entry form (#24041).
git-svn-id: http://svn.redmine.org/redmine/trunk@15951 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config/routes.rb')
-rw-r--r--config/routes.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb
index 97e950c5b..3a096e127 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -215,6 +215,10 @@ Rails.application.routes.draw do
match '/time_entries/context_menu', :to => 'context_menus#time_entries', :as => :time_entries_context_menu, :via => [:get, :post]
resources :time_entries, :controller => 'timelog', :except => :destroy do
+ member do
+ # Used when updating the edit form of an existing time entry
+ patch 'edit', :to => 'timelog#edit'
+ end
collection do
get 'report'
get 'bulk_edit'