diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb index 142fa915f..30cb694ff 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -215,6 +215,8 @@ Rails.application.routes.draw do match '/time_entries/:id', :to => 'timelog#destroy', :via => :delete, :id => /\d+/ # TODO: delete /time_entries for bulk deletion match '/time_entries/destroy', :to => 'timelog#destroy', :via => :delete + # Used to update the new time entry form + post '/time_entries/new', :to => 'timelog#new' get 'projects/:id/activity', :to => 'activities#index', :as => :project_activity get 'activity', :to => 'activities#index' |