mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-23 00:46:23 +00:00
25 lines
784 B
Ruby
25 lines
784 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
# = Activity =
|
||
|
#
|
||
|
# Lleva un registro de las actividades que nos piden hacer remotamente.
|
||
|
#
|
||
|
# Las actividades pueden tener distintos destinataries (sitios/actores).
|
||
|
#
|
||
|
# @todo Obtener el contenido del objeto dinámicamente si no existe
|
||
|
# localmente, por ejemplo cuando la actividad crea un objeto pero lo
|
||
|
# envía como referencia en lugar de anidarlo.
|
||
|
#
|
||
|
# @see {https://www.w3.org/TR/activitypub/#client-to-server-interactions}
|
||
|
class ActivityPub::Activity < ApplicationRecord
|
||
|
include ActivityPub::Concerns::JsonLdConcern
|
||
|
|
||
|
belongs_to :activity_pub
|
||
|
has_one :object, through: :activity_pub
|
||
|
|
||
|
validates :activity_pub_id, presence: true
|
||
|
|
||
|
# Siempre en orden descendiente para saber el último estado
|
||
|
default_scope -> { order(created_at: :desc) }
|
||
|
end
|