Skip to content

Instantly share code, notes, and snippets.

@benhickson
Created April 20, 2020 16:57
Show Gist options
  • Save benhickson/a8ba58bb0d9cf7f52ed4aab10719695e to your computer and use it in GitHub Desktop.
Save benhickson/a8ba58bb0d9cf7f52ed4aab10719695e to your computer and use it in GitHub Desktop.
Rails.application.routes.draw do
get 'users/anon', to: 'users#anon'
get 'users/current', to: 'users#current'
post 'users/login', to: 'users#login'
resources :users, only: [:create]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment