mirror of
https://github.com/discourse/discourse.git
synced 2025-01-30 23:11:44 +08:00
10 lines
171 B
Ruby
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
|