This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/serializers/emoji_serializer.rb
2020-12-07 13:36:08 +02:00

10 lines
171 B
Ruby

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