New API: GET /api/v1/custom_emojis to get a server's custom emojis (#5051)
parent
9c8e602163
commit
293972f716
@ -0,0 +1,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 |
@ -0,0 +1,11 @@ |
|||||||
|
# frozen_string_literal: true |
||||||
|
|
||||||
|
class REST::CustomEmojiSerializer < ActiveModel::Serializer |
||||||
|
include RoutingHelper |
||||||
|
|
||||||
|
attributes :shortcode, :url |
||||||
|
|
||||||
|
def url |
||||||
|
full_asset_url(object.image.url) |
||||||
|
end |
||||||
|
end |
@ -0,0 +1,18 @@ |
|||||||
|
# frozen_string_literal: true |
||||||
|
|
||||||
|
require 'rails_helper' |
||||||
|
|
||||||
|
RSpec.describe Api::V1::CustomEmojisController, type: :controller do |
||||||
|
render_views |
||||||
|
|
||||||
|
describe 'GET #index' do |
||||||
|
before do |
||||||
|
Fabricate(:custom_emoji) |
||||||
|
get :index |
||||||
|
end |
||||||
|
|
||||||
|
it 'returns http success' do |
||||||
|
expect(response).to have_http_status(:success) |
||||||
|
end |
||||||
|
end |
||||||
|
end |
Loading…
Reference in new issue