6 lines
133 B
Ruby
6 lines
133 B
Ruby
class CommentSignature < ApplicationRecord
|
|
include Diaspora::Signature
|
|
|
|
self.primary_key = :comment_id
|
|
belongs_to :comment
|
|
end
|