Given the following associations, I need to reference the Question that a Choice is attached through from the Choice model. I have bee
Question
Choice
The has_many :choices creates an association named choices, not choice. Try using current_user.choices instead.
has_many :choices
choices
choice
current_user.choices
See the ActiveRecord::Associations documentation for information about about the has_many magic.
has_many