namespace(:conclave) do |conclave|
conclave.resources :events, :member => {:map => :get, :attendees => :get}
end
to
namespace(:conclave, :path_prefix => 'meetings') do |conclave|
conclave.resources :events, :member => {:map => :get, :attendees => :get}
end
Note the :path_prefix option. This option is available also for
mapping resources, etc.
al.
--
Alberto Molpeceres.
Linking Paths.
Simple registration for your events. http://www.stagehq.com
> --
> You received this message because you are subscribed to the Google Groups "tog_users" group.
> To post to this group, send email to tog_...@googlegroups.com.
> To unsubscribe from this group, send email to tog_users+...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/tog_users?hl=en.
>
>
I know that I could code that desert_routes.rb
But in fact, I have nothing against changing the default routes of the
plugin to match something like what you are trying to achieve.
al.
--
Alberto Molpeceres.
Linking Paths.
Simple registration for your events. http://www.stagehq.com
It also makes it easier to submit patches to the various plugins.
Thanks again for the responses.