Hello, How can I define a relationship between two controllers. I have one controller called rides and another called registrant. Is there anyway I can access the registrant database from within the rides controller? I was thinking
@registrant = Registrant.find(:first)
from within rides, but that didn't work. Any suggestions?
Thanks