Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 10th, 2012  |  syntax: None  |  size: 0.38 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. ActionController::Routing::Routes.draw do |map|
  2.   map.resources :jobs, :belongs_to => :users
  3.  
  4.   # The priority is based upon order of creation: first created -> highest priority.
  5.   map.root :controller => "dashboard", :action => "index"
  6.  
  7.   map.devise_for :users, :has_many => :jobs
  8.  
  9.   map.dashboard "/dashboard", :controller => "dashboard", :action => "dashboard"
  10.  
  11.  
  12. yadda....yadda...