2023-12-20 21:00:58 -06:00
|
|
|
Rails.application.routes.draw do
|
2023-12-21 12:10:47 -06:00
|
|
|
resources :friends
|
2023-12-20 21:57:35 -06:00
|
|
|
# get 'home/index' # mj
|
2023-12-20 23:09:42 -06:00
|
|
|
get 'home/about'
|
2023-12-20 21:57:35 -06:00
|
|
|
root 'home#index'
|
2023-12-20 21:00:58 -06:00
|
|
|
# For details on the DSL available within this file, see https://guides.rubyonrails.org/routing.html
|
|
|
|
end
|