9 lines
345 B
Ruby
9 lines
345 B
Ruby
Rails.application.routes.draw do
|
|
resources :talk_preferences, only: [:index, :show, :create, :update]
|
|
root to: 'home#index'
|
|
resource :summary, only: :show
|
|
resource :conflicts, only: :show
|
|
resource :conflicts_summary, only: :show
|
|
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
|
|
end
|