On Apr 17, 2006, at 17:50, David Heinemeier Hansson wrote:
2. If it does need special handling because of some rationale I am
not aware of, should we document :id has to go necessarily into
options and not into :params?
:id is special, just like :action and :controller is. Routing is built
aro
The current implementation of render_component handles :id as a
special parameter (newlines edited for email):
# after r3563
(options[:params] || {}).with_indifferent_access.regular_update(
"controller" => controller_name, "action" => options[:action],
"id" => options[:id])
I notic