summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2014-10-04 09:14:17 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2014-10-04 09:14:17 +0000
commit2e9b28906db62f5ef5b2663f68d395a8e261959c (patch)
tree056539161b4f990d59dcb3482ae7c8b172b4417d /config
parentefdf2584b68bfde062507965811f0f416f42dcbc (diff)
downloadredmine-2e9b28906db62f5ef5b2663f68d395a8e261959c.tar.gz
redmine-2e9b28906db62f5ef5b2663f68d395a8e261959c.zip
Removes routes for time entries nested under project/issues.
git-svn-id: http://svn.redmine.org/redmine/trunk@13424 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config')
-rw-r--r--config/routes.rb8
1 files changed, 1 insertions, 7 deletions
diff --git a/config/routes.rb b/config/routes.rb
index c9aea1961..bb2c5bb12 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -111,13 +111,7 @@ RedmineApp::Application.routes.draw do
resource :enumerations, :controller => 'project_enumerations', :only => [:update, :destroy]
get 'issues/:copy_from/copy', :to => 'issues#new', :as => 'copy_issue'
- resources :issues, :only => [:index, :new, :create] do
- resources :time_entries, :controller => 'timelog' do
- collection do
- get 'report'
- end
- end
- end
+ resources :issues, :only => [:index, :new, :create]
# issue form update
match 'issues/update_form', :controller => 'issues', :action => 'update_form', :via => [:put, :post], :as => 'issue_form'