logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

custom_emoji_serializer.rb (307B)


  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