spike22
unread,Mar 20, 2009, 4:04:28 AM3/20/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Ruby on Rails: Talk
Hi everyone, I've noticed an inconsistency in the way rails deals with
uncountable resources and restful routes.
Basically if you map an uncountable resource rails will append
'_index' to the end of some routes to avoid route clashes between the
routes that deal with singular resources and plural resources. That's
all fine but on the other end, with the polymorphic path generator, it
doesn't generate the correct path. using form_for [@podcast_series]
generates something like podcast_series_path. If called from a form it
should be smart enough to realise that we want the update path and
call podcast_series_index_path.
Has anyone else come up against it? I'm not savvy enough to write a
patch for rails so how do I get this investigated? Does anyone have a
solution?
Cheers,
Brendon