Available during registration or after conference Co-authored-by: Shyukri <shshyukriev@suse.com> Co-authored-by: Henne <hvogel@opensuse.org> Co-authored-by: Moises <mdeniz@suse.com>
9 lines
237 B
Ruby
9 lines
237 B
Ruby
class SurveySubmission < ActiveRecord::Base
|
|
belongs_to :user
|
|
belongs_to :survey
|
|
has_many :survey_replies, through: :user
|
|
|
|
validates :user_id, uniqueness: { scope: :survey_id }
|
|
|
|
accepts_nested_attributes_for :survey_replies
|
|
end
|