Skip to content

Instantly share code, notes, and snippets.

@rhynix
Created September 7, 2009 18:01
Show Gist options
  • Save rhynix/182485 to your computer and use it in GitHub Desktop.
Save rhynix/182485 to your computer and use it in GitHub Desktop.
map.resources :users
map.register "register", :controller => :users, :action => :new, :conditions => { :method => :get }
map.register "register", :controller => :users, :action => :create, :conditions => { :method => :post }
# Creates these routes
#
# ...Lots of users routes...
#
# GET /register {:action=>"new", :controller=>"users"}
# register POST /register {:action=>"create", :controller=>"users"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment