gauge/config/routes.rb

9 lines
345 B
Ruby
Raw Permalink Normal View History

2015-10-06 15:21:46 +03:00
Rails.application.routes.draw do
resources :talk_preferences, only: [:index, :show, :create, :update]
root to: 'home#index'
2016-10-10 21:28:23 +03:00
resource :summary, only: :show
2016-10-12 20:07:57 +03:00
resource :conflicts, only: :show
2016-10-12 21:51:36 +03:00
resource :conflicts_summary, only: :show
2016-10-01 02:08:20 +03:00
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
2015-10-06 15:21:46 +03:00
end