properties of entities that are inherited from Relayable class in the Diaspora source code - "parent_guid", "parent_author_signature", "author_signature".
10 lines
211 B
Ruby
10 lines
211 B
Ruby
module DiasporaFederation
|
|
module Entities
|
|
class Comment < Entity
|
|
property :guid
|
|
include Relayable
|
|
property :text
|
|
property :diaspora_id, xml_name: :diaspora_handle
|
|
end
|
|
end
|
|
end
|