1
0

custom_emoji_serializer.rb 307 B

123456789101112131415
  1. # frozen_string_literal: true
  2. class REST::CustomEmojiSerializer < ActiveModel::Serializer
  3. include RoutingHelper
  4. attributes :shortcode, :url, :static_url, :visible_in_picker
  5. def url
  6. full_asset_url(object.image.url)
  7. end
  8. def static_url
  9. full_asset_url(object.image.url(:static))
  10. end
  11. end