vote up 1 vote down star
<%= link_to 'Edit', edit_order_path(@order) %>

Is it possible to wire this link to the modify action of the Orders controller (instead of the edit action) without changing this syntax:

edit_order_path(@order)
flag

1 Answer

vote up 2 vote down check

routes.rb:

map.edit_order "order/modify/:id" ,
:controller => "order" ,
:action => "modify" ,
:id => /\d+/
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.