8 lines
196 B
Ruby
8 lines
196 B
Ruby
# frozen_string_literal: true
|
|
|
|
class PollParticipationSignature < ApplicationRecord
|
|
include Diaspora::Signature
|
|
|
|
self.primary_key = :poll_participation_id
|
|
belongs_to :poll_participation
|
|
end
|