gauge/config/routes.rb

14 lines
410 B
Ruby
Raw 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'
get 'ratings' => 'home#ratings'
get 'export' => 'home#export'
2016-10-10 00:20:20 +03:00
get 'summary' => 'home#summary'
resources :conflicts do
collection do
get 'pivot'
end
end
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