8 lines
220 B
Ruby
8 lines
220 B
Ruby
|
Rails.application.routes.draw do
|
||
|
resources :friends
|
||
|
#get 'home/index'
|
||
|
get 'home/about'
|
||
|
root 'home#index'
|
||
|
# For details on the DSL available within this file, see https://guides.rubyonrails.org/routing.html
|
||
|
end
|