Created
April 20, 2020 16:57
-
-
Save benhickson/a8ba58bb0d9cf7f52ed4aab10719695e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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