I am including a custom method for formatting my json data.
My controller looks like this:
("def" is taken out for brevity sake)
respond_to do |format|
format.json { render json: @user, :methods => [:follower_count(params[:id])] }
end
My model looks like this:
def follower_count user_id
User.find(user_id).friendships.count
end
However, this throws a syntax error, unexpected '('.
I'm not sure how to pass in an argument to the follower_count method in the controller. I tried wrapping in square – didn't work. I tried no brackets – still doesn't work. How do you pass in arguments?!