Rename the volunteers to match the other config routes

This commit is contained in:
Henne Vogelsang 2014-03-04 10:30:23 +01:00
parent 97eae285c5
commit 5b05ffbd56
2 changed files with 6 additions and 8 deletions

View file

@ -31,8 +31,8 @@ Osem::Application.routes.draw do
get "/dietary_choices" => "dietchoices#show", :as => "dietary_list"
put "/dietary_choices" => "dietchoices#update", :as => "dietary_update"
get "/volunteers_list" => "volunteers#show"
get "/volunteers" => "volunteers#index", :as => "volunteer_options"
put "/volunteers" => "volunteers#update", :as => "volunteer_options_update"
get "/volunteers" => "volunteers#index", :as => "volunteers_info"
put "/volunteers" => "volunteers#update", :as => "volunteers_update"
get "/cfp" => "callforpapers#show", :as => "cfp_info"
put "/cfp" => "callforpapers#update", :as => "cfp_update"
post "/cfp" => "callforpapers#create", :as => "cfp_create"