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