Sorry, I can't see your problem.
Are you talking about REST or CRUD anyway?
The CRUD actions only cover basic functionality and
that for there will always be an alternative.
If you need other actions, just define them like:
map.resources :payments, :collection => [:search, :export_paypal],
:member => [:accept, :pdf]
This is far better readable than the old way and you get
the URL helpers like:
pdf_payment_path(@id)
And controllers won't be "all CRUD" by default,
since even a REST resources often doesn't use
all CRUD actions and there is not much sense
in adding "empty" actions to the controllers. So if
they would decide to have those actions in by default,
this would still be only an option, nobody can force you
to actually write code in such an action.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---