about summary refs log blame commit diff
path: root/app/controllers/manifests_controller.rb
blob: 960510f60161e816ebdf73c3f140a5353b9858e9 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                 
                                            
                                         
 
          
                                      
                                                                                        
     
# 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