Add a Static Pages controller

parent 9dce72a7
Pipeline #1217 canceled with stages
in 0 seconds
Rails.application.routes.draw do
get 'static_pages/home'
get 'static_pages/help'
g#et 'static_pages/home'
root 'static_pages#home'
get '/home', to: 'static_pages#home'
get '/help', to: 'static_pages#help'
#root 'static_pages#home'
# For details on the DSL available within this file, see https://guides.rubyonrails.org/routing.html
end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment