2017-09-23 00:57:23 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Api::V1::CustomEmojisController < Api::BaseController
|
|
|
|
respond_to :json
|
|
|
|
|
|
|
|
def index
|
2017-10-05 22:42:05 +01:00
|
|
|
render json: CustomEmoji.local.where(disabled: false), each_serializer: REST::CustomEmojiSerializer
|
2017-09-23 00:57:23 +01:00
|
|
|
end
|
|
|
|
end
|