This repository has been archived on 2023-07-01. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/app/views/api/v1/media/create.rabl
2016-12-04 13:02:43 +01:00

6 lines
218 B
Ruby

object @media
attribute :id, :type
node(:url) { |media| full_asset_url(media.file.url( :original)) }
node(:preview_url) { |media| full_asset_url(media.file.url( :small)) }
node(:text_url) { |media| medium_url(media) }