added conference wide information page and linked to the admin sidebar

This commit is contained in:
AnithaPal 2016-07-06 15:30:39 -04:00
parent 710b4d26a4
commit 35afdcead4
5 changed files with 54 additions and 1 deletions

View file

@ -26,6 +26,9 @@ Osem::Application.routes.draw do
end
resources :comments, only: [:index]
resources :conferences do
member do
get :conference_wide_screen
end
resource :contact, except: [:index, :new, :create, :show, :destroy]
resources :schedules, only: [:index, :create, :show, :update, :destroy]
resources :event_schedules, only: [:create, :update, :destroy]
@ -102,7 +105,7 @@ Osem::Application.routes.draw do
get '/revision_history/:id/revert_attribute' => 'versions#revert_attribute', as: 'revision_history_revert_attribute'
end
resources :conferences, only: [:index, :show] do
resources :conferences, only: [:index, :show ] do
resource :program, only: [] do
resources :proposals, except: :destroy do
get 'commercials/render_commercial' => 'commercials#render_commercial'