Ok here's a quicky... but a goody :)

We have models Company, Reference and Applicant... and References and
Applicants just inherit from Company, and are basically companies with
the type field set to reference...

All companies can have a phone number associated with them, and phone
number is a different model...

I'm having trouble using the form_for method with a company that
happens to be an Applicant...

form_for( [ @company, @phone_number] )

tries to use the route applicant_phone_number however the only route
that exists is company_phone_number, which is the one I want to use...

I tried to create a route by creating a
map.resource :applicants, :has_many => phone_numbers

but there is no resource for Reference or Applicant only models, and
thus it breaks down... I get errors.

Any ideas on the correct way to make this work?
--~--~---------~--~----~------------~-------~--~----~
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 rubyonrails-talk@googlegroups.com
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to