Created
September 26, 2012 14:26
-
-
Save telagraphic/3788368 to your computer and use it in GitHub Desktop.
Devise Set-Up
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
LifeUlator::Application.routes.draw do | |
get "status_updates/index" | |
devise_for :users do | |
resources :days | |
end | |
resources :users do # or do devise_for :users do | |
resources :projects | |
end | |
resources :days do | |
resources :status_updates | |
end | |
root :to => "days#index" | |
# resources :days | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment