fix conference registration

This commit is contained in:
Stella Rouzi 2014-07-13 11:42:46 +03:00
parent 06cf1ced2b
commit 51d3663769
8 changed files with 23 additions and 26 deletions

View file

@ -88,10 +88,10 @@ Osem::Application.routes.draw do
resource :schedule, only: [] do
get "/" => "schedule#index"
end
get "/register" => "conference_registration#register"
patch "/register" => "conference_registration#update"
delete "/register" => "conference_registration#unregister"
member do
get "/register" => "conference_registration#register"
patch "/register" => "conference_registration#update"
delete "/register" => "conference_registration#unregister"
get "gallery_photos"
end
end