about summary refs log tree commit diff
path: root/app/controllers/api/v1/custom_emojis_controller.rb
blob: 4dd77fb5503c609f6bf84016a850a686b51f12a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class Api::V1::CustomEmojisController < Api::BaseController
  respond_to :json

  def index
    render json: CustomEmoji.local, each_serializer: REST::CustomEmojiSerializer
  end
end