diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb index 34ee875ea..702bcf89e 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -40,7 +40,8 @@ ActionController::Routing::Routes.draw do |map| timelog.with_options :action => 'new', :conditions => {:method => :get} do |time_edit| time_edit.connect 'issues/:issue_id/time_entries/new' end - + + timelog.connect 'projects/:project_id/timelog/edit', :action => 'create', :conditions => {:method => :post} timelog.connect 'time_entries/:id/destroy', :action => 'destroy', :conditions => {:method => :post} end |