mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 23:46:22 +00:00
15 lines
325 B
Ruby
15 lines
325 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
# = Actor =
|
||
|
#
|
||
|
# Actor es la entidad que realiza acciones en ActivityPub
|
||
|
#
|
||
|
# @todo Obtener el perfil dinámicamente
|
||
|
class ActivityPub::Actor < ApplicationRecord
|
||
|
include ActivityPub::Concerns::JsonLdConcern
|
||
|
|
||
|
belongs_to :instance
|
||
|
has_many :activity_pubs, as: :object
|
||
|
has_many :objects
|
||
|
end
|