fixin.me/config/routes.rb
cryptogopher deaf0fa73b Generate User scaffold
bundle exec rails generate scaffold user email:string{64}:uniq
  status:integer
2023-03-11 22:56:32 +01:00

7 lines
172 B
Ruby

Rails.application.routes.draw do
resources :users
# Define your application routes per the DSL in https://guides.rubyonrails.org/routing.html
root "users#index"
end