This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-10-07 08:43:42 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class EmojisController < ApplicationController
|
|
|
|
before_action :set_emoji
|
2018-01-03 16:21:38 -08:00
|
|
|
before_action :set_cache_headers
|
2017-10-07 08:43:42 -07:00
|
|
|
|
|
|
|
def show
|
|
|
|
respond_to do |format|
|
|
|
|
format.json do
|
2018-01-03 16:21:38 -08:00
|
|
|
skip_session!
|
|
|
|
|
2018-08-19 06:52:38 -07:00
|
|
|
render_cached_json(['activitypub', 'emoji', @emoji], content_type: 'application/activity+json') do
|
2018-01-03 16:21:38 -08:00
|
|
|
ActiveModelSerializers::SerializableResource.new(@emoji, serializer: ActivityPub::EmojiSerializer, adapter: ActivityPub::Adapter)
|
|
|
|
end
|
2017-10-07 08:43:42 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_emoji
|
|
|
|
@emoji = CustomEmoji.local.find(params[:id])
|
|
|
|
end
|
|
|
|
end
|