Displaying 2 results from an estimated 2 matches for "stokkink".
Did you mean:
stocking
2007 Dec 10
11
map.namespace, rake routes yields no POST URLs
routes.rb
map.namespace :admin do |admin|
admin.resources :cupcakes
end
rake routes
cupcakes GET /cupcakes
formatted_cupcakes GET /cupcakes.:format
POST /cupcakes
POST /cupcakes.:format
That said, what the heck goes here:
form_for(:cupcake, @cupcake, xxx_url) # ???
Calling create_admin_cupcake_url yields...
undefined local variable
2008 Mar 07
4
n-levels of nested resources in REST?
Hi,
I find it would be very convenient to nest resources in two levels, so
a member is only sensible as a part of a club, and a fee pament is
only sensible in the context of a club and a member.
Is it possible to nest nested resources? How would the syntax be?
I have tried just nesting the assignment in routes.rb, but failed to
get it right
What do ou think? Is it possible?
/Fredrik
--