I have a similar question to this example. I'm a newbie and have been reading up for several hours on how to get this answer but haven't been able to get to the answer, so many thanks for the assistance! I have followed the answer from Kikito to setup the following models: Users, Photos, Locations, Photo_Relationships. My routes file contains:
resources :users
resources :locations do
resources :photos
end
resources :photo_relationships
I'm able to get the photo to save to the correct Location in my application, but I'm unable to assign multiple Users (specifically the creator of the Photo) to the Photo via the Photo_Relationships model.
class CreatePhotoRelationshipsTable < ActiveRecord::Migration
def change
create_table :photo_relationships do |t|
t.integer :photo_id
t.integer :user_id
t.integer :role_id
t.timestamps
end
Photos Controller
def create
@location = Location.find(params[:location_id])
@photo = @location.photos.new(params[:photo])
@photo.create_photo_relationship(@photo, current_user, 0)
if @photo.save
flash[:notice] = "Successfully added your photo"
redirect_to [@mountain, @photo]
else
render :action => 'new'
end
end
Photo_Relationships Controller
def create
@relationship = photo_relationships.new(params[:photo][:location])
@photo.create_photo_relationship()
end
My current error is undefined method `photo_relationship'. Whatever help or direction someone is able to offer is greatly appreciated.
