35 lines
751 B
Ruby
35 lines
751 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class REST::AnnouncementSerializer < ActiveModel::Serializer
|
||
|
attributes :id, :content, :starts_at, :ends_at, :all_day
|
||
|
|
||
|
has_many :mentions
|
||
|
has_many :tags, serializer: REST::StatusSerializer::TagSerializer
|
||
|
has_many :emojis, serializer: REST::CustomEmojiSerializer
|
||
|
has_many :reactions, serializer: REST::ReactionSerializer
|
||
|
|
||
|
def id
|
||
|
object.id.to_s
|
||
|
end
|
||
|
|
||
|
def content
|
||
|
Formatter.instance.linkify(object.text)
|
||
|
end
|
||
|
|
||
|
def reactions
|
||
|
object.reactions(current_user&.account)
|
||
|
end
|
||
|
|
||
|
class AccountSerializer < ActiveModel::Serializer
|
||
|
attributes :id, :username, :url, :acct
|
||
|
|
||
|
def id
|
||
|
object.id.to_s
|
||
|
end
|
||
|
|
||
|
def url
|
||
|
ActivityPub::TagManager.instance.url_for(object)
|
||
|
end
|
||
|
end
|
||
|
end
|