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: c0ae04aa5e7dcfa2dcf246bc86fe1902d3cd529d (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

class LikeSignature < ApplicationRecord
  include Diaspora::Signature

  self.primary_key = :like_id
  belongs_to :like
end