changed the route from home/index to root

This commit is contained in:
Mariam 2023-12-20 21:57:35 -06:00
parent 75543f3451
commit 2b29b243d0
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
Rails.application.routes.draw do
get 'home/index'
# get 'home/index' # mj
root 'home#index'
# For details on the DSL available within this file, see https://guides.rubyonrails.org/routing.html
end