Skip to content

Instantly share code, notes, and snippets.

@rhynix
Created September 7, 2009 18:01
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