1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2025-02-17 12:12:42 +01:00
mastodon/app/controllers/manifests_controller.rb

12 lines
318 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class ManifestsController < ApplicationController
skip_before_action :store_current_location
skip_before_action :require_functional!
def show
expires_in 3.minutes, public: true
render json: InstancePresenter.new, serializer: ManifestSerializer, root: 'instance'
end
end