diaspora/app/models/comment_signature.rb
2017-08-12 15:39:20 +02:00

7 lines
170 B
Ruby

class CommentSignature < ApplicationRecord
include Diaspora::Signature
self.primary_key = :comment_id
belongs_to :comment
validates :comment, presence: true
end