This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-07-06 19:02:06 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class REST::PreviewCardSerializer < ActiveModel::Serializer
|
|
|
|
include RoutingHelper
|
|
|
|
|
|
|
|
attributes :url, :title, :description, :type,
|
|
|
|
:author_name, :author_url, :provider_name,
|
|
|
|
:provider_url, :html, :width, :height,
|
2017-12-06 18:37:43 -08:00
|
|
|
:image, :embed_url
|
2017-07-06 19:02:06 -07:00
|
|
|
|
|
|
|
def image
|
|
|
|
object.image? ? full_asset_url(object.image.url(:original)) : nil
|
|
|
|
end
|
|
|
|
end
|