Skip to content

Instantly share code, notes, and snippets.

@whiz25
Created January 14, 2020 10:18
Show Gist options
  • Save whiz25/c01e0521412b03644180d8f0985ee90e to your computer and use it in GitHub Desktop.
Save whiz25/c01e0521412b03644180d8f0985ee90e to your computer and use it in GitHub Desktop.
Rails.application.routes.draw do
resources :sessions, only: [:create]
resources :users
delete :logout, to: "sessions#logout"
get :logged_in, to: "sessions#logged_in"
root to: "static#home"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment