7 lines
171 B
Ruby
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
|