diaspora/app/models/poll_answer.rb
2017-09-17 19:29:15 +02:00

13 lines
267 B
Ruby

# frozen_string_literal: true
class PollAnswer < ApplicationRecord
include Diaspora::Federated::Base
include Diaspora::Fields::Guid
belongs_to :poll
has_many :poll_participations
validates :answer, presence: true
self.include_root_in_json = false
end