clarion/config/routes.rb
Petko Bordjukov 2b64461ac9 Implement changing of the status of the CFP
Allow a user to start and end a call for participation from the
conference list.
2015-05-24 01:17:42 +03:00

18 lines
381 B
Ruby

Rails.application.routes.draw do
devise_for :users
namespace :management do
get '/', to: 'conferences#index'
resources :conferences do
resources :events
resources :volunteers
resources :sponsorship_offers
resource :call_for_participation, only: [:create, :destroy]
end
resources :users
end
root 'management/conferences#index'
end