This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-09-23 01:57:23 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Api::V1::CustomEmojisController < Api::BaseController
|
|
|
|
respond_to :json
|
|
|
|
|
|
|
|
def index
|
2017-10-05 23:42:05 +02:00
|
|
|
render json: CustomEmoji.local.where(disabled: false), each_serializer: REST::CustomEmojiSerializer
|
2017-09-23 01:57:23 +02:00
|
|
|
end
|
|
|
|
end
|