mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-26 14:46:21 +00:00
12 lines
287 B
Ruby
12 lines
287 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
# Almacena objetos de ActivityPub, como Note, Article, etc.
|
||
|
class ActivityPub::Object < ApplicationRecord
|
||
|
include ActivityPub::Concerns::JsonLdConcern
|
||
|
|
||
|
belongs_to :actor
|
||
|
has_many :activity_pubs, as: :object
|
||
|
|
||
|
validates :actor_id, presence: true
|
||
|
end
|