8 lines
164 B
Ruby
8 lines
164 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CommentSignature < ApplicationRecord
|
|
include Diaspora::Signature
|
|
|
|
self.primary_key = :comment_id
|
|
belongs_to :comment
|
|
end
|