Hello,
I have the following in my def create controller:
@photo = current_user.photos.create(params[:photo].merge(:project_id => params[:project_id])
In my app photo records are valid if they have a project_id or not....
But I need my create statement not to error and work for both cases. A. If there is a param project_id, insertit B. If not, insert the default NULL value when creating the record
What's the smartest Rails3 way to accomplish this?
Thanks