diaspora/app/models/poll_participation_signature.rb
2016-08-08 18:56:37 +02:00

7 lines
214 B
Ruby

class PollParticipationSignature < ActiveRecord::Base
include Diaspora::Signature
self.primary_key = :poll_participation_id
belongs_to :poll_participation
validates :poll_participation, presence: true
end