Учитывая следующие ассоциации, мне нужно ссылаться на Question
, что a 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
Я, вероятно, не замечаю ничего простого. Любая помощь будет оценена.