mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
25 lines
451 B
Ruby
25 lines
451 B
Ruby
# frozen_string_literal: true
|
|
|
|
class REST::MediaAttachmentSerializer < ActiveModel::Serializer
|
|
include RoutingHelper
|
|
|
|
attributes :id, :type, :url, :preview_url,
|
|
:remote_url, :text_url, :meta
|
|
|
|
def url
|
|
full_asset_url(object.file.url(:original))
|
|
end
|
|
|
|
def preview_url
|
|
full_asset_url(object.file.url(:small))
|
|
end
|
|
|
|
def text_url
|
|
object.local? ? medium_url(object) : nil
|
|
end
|
|
|
|
def meta
|
|
object.file.meta
|
|
end
|
|
end
|