Advertisement
Guest User

sample_app/app/controllers/users_controller.rb

a guest
Dec 20th, 2023
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.34 KB | Source Code | 0 0
  1. Rails.application.routes.draw do
  2.   # get 'users/new'
  3.   root 'static_pages#home'
  4.   get '/help', to: 'static_pages#help'
  5.   get '/about', to: 'static_pages#about'
  6.   get '/contact', to: 'static_pages#contact'
  7.   get '/signup', to: 'users#new'
  8.   resources :users
  9.  
  10.   get 'static_pages/home' # Should be here according to tut??? Don't know
  11. end
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement