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'
|
2015-10-15 00:18:00 +03:00
|
|
|
get 'ratings' => 'home#ratings'
|
|
|
|
get 'export' => 'home#export'
|
2015-10-06 15:21:46 +03:00
|
|
|
end
|