5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-23 07:06:23 +00:00
panel/app/models/activity_pub/object/organization.rb

13 lines
209 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# = Organization =
#
# Una organización
2024-02-21 15:46:38 +00:00
class ActivityPub
2024-02-21 18:44:04 +00:00
class Object
2024-03-07 19:54:09 +00:00
class Organization < ActivityPub::Object
include Concerns::ActorTypeConcern
end
2024-02-21 15:46:38 +00:00
end
end