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-09-22 16:57:23 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class REST::CustomEmojiSerializer < ActiveModel::Serializer
|
|
|
|
include RoutingHelper
|
|
|
|
|
2017-10-27 07:11:30 -07:00
|
|
|
attributes :shortcode, :url, :static_url, :visible_in_picker
|
2017-09-22 16:57:23 -07:00
|
|
|
|
2019-06-28 06:54:10 -07:00
|
|
|
attribute :category, if: :category_loaded?
|
|
|
|
|
2017-09-22 16:57:23 -07:00
|
|
|
def url
|
|
|
|
full_asset_url(object.image.url)
|
|
|
|
end
|
2017-10-05 14:41:47 -07:00
|
|
|
|
|
|
|
def static_url
|
|
|
|
full_asset_url(object.image.url(:static))
|
|
|
|
end
|
2019-06-28 06:54:10 -07:00
|
|
|
|
|
|
|
def category
|
|
|
|
object.category.name
|
|
|
|
end
|
|
|
|
|
|
|
|
def category_loaded?
|
|
|
|
object.association(:category).loaded? && object.category.present?
|
|
|
|
end
|
2017-09-22 16:57:23 -07:00
|
|
|
end
|