mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-08 00:43:15 +00:00
6 lines
256 B
Ruby
6 lines
256 B
Ruby
object @media
|
|
attribute :id, :type
|
|
node(:url) { |media| full_asset_url(media.file.expiring_url(s3_expiry, :original)) }
|
|
node(:preview_url) { |media| full_asset_url(media.file.expiring_url(s3_expiry, :small)) }
|
|
node(:text_url) { |media| medium_url(media) }
|