Skip to content

Instantly share code, notes, and snippets.

@colormeruby
Created November 19, 2012 14:08
Show Gist options
  • Save colormeruby/4110834 to your computer and use it in GitHub Desktop.
Save colormeruby/4110834 to your computer and use it in GitHub Desktop.
Devise: Routes Information
# Devise Configuration
devise_for :users
devise_scope :user do
get "/login", :to => "devise/sessions#new" # Add a custom sign in route for user sign in
get "/logout", :to => "devise/sessions#destroy" # Add a custom sing out route for user sign out
get "/register", :to => "devise/registrations#new" # Add a Custom Route for Registrations
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment