mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-03 13:34:30 +00:00
cac9110533
* Remove skip_session! as it is not supported in Rails 5 * Minor cleanup in StreamEntriesController * Remove redundant mark_cacheable! calls
23 lines
570 B
Ruby
23 lines
570 B
Ruby
# frozen_string_literal: true
|
|
|
|
class EmojisController < ApplicationController
|
|
before_action :set_emoji
|
|
before_action :set_cache_headers
|
|
|
|
def show
|
|
respond_to do |format|
|
|
format.json do
|
|
render_cached_json(['activitypub', 'emoji', @emoji], content_type: 'application/activity+json') do
|
|
ActiveModelSerializers::SerializableResource.new(@emoji, serializer: ActivityPub::EmojiSerializer, adapter: ActivityPub::Adapter)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def set_emoji
|
|
@emoji = CustomEmoji.local.find(params[:id])
|
|
end
|
|
end
|