2014-10-06 05:55:25 +00:00
|
|
|
class SurveyQuestionOption
|
|
|
|
include Mongoid::Document
|
|
|
|
|
|
|
|
field :name, :localize => true
|
|
|
|
field :jump_to, :default => 0
|
2016-08-18 13:18:02 +00:00
|
|
|
field :points, :type => Integer, :default => 0
|
2014-10-06 05:55:25 +00:00
|
|
|
|
|
|
|
embedded_in :survey_question
|
|
|
|
end
|