# frozen_string_literal: true
class EmojiSerializer < ApplicationSerializer
attributes :name, :url, :group
def url
return nil if object.url.blank?
Discourse.store.cdn_url(object.url)
end