Skip to content

Instantly share code, notes, and snippets.

@telagraphic
Created September 26, 2012 14:26
Show Gist options
  • Save telagraphic/3788368 to your computer and use it in GitHub Desktop.
Save telagraphic/3788368 to your computer and use it in GitHub Desktop.
Devise Set-Up
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