7 lines
214 B
Ruby
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
|