Welcome to mirror list, hosted at ThFree Co, Russian Federation.

like_signature.rb « models « app - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6978704a9ea16f58594e53c8bd841d22a56ab255 (plain)
1
2
3
4
5
6
7
class LikeSignature < ActiveRecord::Base
  include Diaspora::Signature

  self.primary_key = :like_id
  belongs_to :like
  validates :like, presence: true
end