Using Rails 3.1.0
def create
@practice = Practice.new(params[:practice])
respond_to do |format|
if (current_user.practices << @practice rescue false)
pmf = current_user.practices_users.inspect # if this line is removed the following update_attributes method breaks!
current_user.practices_users.last.update_attributes(:admin_flg => true, :first_name => params[:first_name], :last_name => params[:last_name])
format.html { redirect_to home_dashboard_path, notice: 'Practice was successfully created.' }
format.json { render json: @practice, status: :created, location: @practice }
else
format.html { render action: "new" }
format.json { render json: @practice.errors, status: :unprocessable_entity }
end
end
end
When the 'pmf = ...' line is not present, I get this line
NoMethodError:
undefined method `update_attributes' for nil:NilClass
When the 'pmf = ...' line is present, the create action works normally. What is going on?
current_user.practices_userswhen you do not have thepmf =line? It might be the transaction has not yet been comitted – Benjamin Udink ten Cate Nov 4 '11 at 20:46