Files
nairobi/app/models/poll/question/answer.rb
2017-10-04 17:25:51 -04:00

11 lines
285 B
Ruby

class Poll::Question::Answer < ActiveRecord::Base
belongs_to :question, class_name: 'Poll::Question', foreign_key: 'question_id'
has_many :videos, class_name: 'Poll::Question::Answer::Video'
validates :title, presence: true
def description
super.try :html_safe
end
end