diaspora/app/models/comment_signature.rb
2016-08-08 18:56:37 +02:00

7 lines
171 B
Ruby

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