6 lines
166 B
Ruby
6 lines
166 B
Ruby
Rails.application.routes.draw do
|
|
resources :talk_preferences, only: [:index, :show, :create, :update]
|
|
root to: 'home#index'
|
|
get 'ratings' => 'home#ratings'
|
|
end
|