I'm trying to put together a query in ActiveRecord that is in part based on a HABTM association between project and item. This is what I'm trying to do:
@project = Project.find(params[:id])
@company = Company.find(params[:cid])
@items = @company.items.where("items.public" => true OR "items.project_ids" => @project.id )
I'm getting all kinds of errors here - first with the OR, then with the items.project_ids not being recognized, etc. How can I write this query properly?