Учитывая следующие ассоциации, мне нужно сослаться на Question
, к которому Choice
присоединен из модели Choice
Я пытался использовать belongs_to :question, through: :answer
для выполнения этого действия.
class User
has_many :questions
has_many :choices
end
class Question
belongs_to :user
has_many :answers
has_one :choice, :through => :answer
end
class Answer
belongs_to :question
end
class Choice
belongs_to :user
belongs_to :answer
belongs_to :question, :through => :answer
validates_uniqueness_of :answer_id, :scope => [ :question_id, :user_id ]
end
Я получаю
NameError Неинициализированная константа User::Choice
когда я пытаюсь сделать current_user.choices
Работает нормально, если я не включу
belongs_to :question, :through => :answer
Но я хочу использовать это, потому что я хочу быть в состоянии validates_uniqueness_of
Я, наверное, упускаю из виду что-то простое. Любая помощь будет оценена.