Track related refactoring
Add roles as nested routes to track (for the track organizer role) Allow transition from to_accept to to_reject and backwards Split Track#valid_dates validation to many independent ones Show all the confirmed tracks in the conference's splashpage Add comment in admin/Tracks#toggle_cfp_inclusion Rewrite admin/TracksController#accept spec Add feature spec for track requests Change 'In' to 'Room' in Tracks#index Rewrite Track#overlapping Refactor code in ProposalsController Fix typos
This commit is contained in:
parent
9c4892bfc8
commit
27fa79a826
21 changed files with 279 additions and 144 deletions
|
|
@ -90,6 +90,11 @@ Osem::Application.routes.draw do
|
|||
patch :cancel
|
||||
patch :update_selected_schedule
|
||||
end
|
||||
resources :roles, only: [:show, :edit, :update] do
|
||||
member do
|
||||
post :toggle_user
|
||||
end
|
||||
end
|
||||
end
|
||||
resources :event_types
|
||||
resources :difficulty_levels
|
||||
|
|
@ -118,15 +123,9 @@ Osem::Application.routes.draw do
|
|||
resources :campaigns, except: [:show]
|
||||
resources :emails, only: [:show, :update, :index]
|
||||
resources :physical_ticket, only: [:index]
|
||||
resources :roles, only: [:edit]
|
||||
resources :roles, except: [ :new, :create, :edit ] do
|
||||
resources :roles, except: [:new, :create] do
|
||||
member do
|
||||
post :toggle_user
|
||||
get ':track_name' => 'roles#show', as: 'track'
|
||||
get ':track_name/edit' => 'roles#edit', as: 'track_edit'
|
||||
patch ':track_name' => 'roles#update'
|
||||
put ':track_name' => 'roles#update'
|
||||
post ':track_name/toggle_user' => 'roles#toggle_user', as: 'toggle_user_track'
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue