about summary refs log tree commit diff
path: root/app/controllers/manifests_controller.rb
blob: 960510f60161e816ebdf73c3f140a5353b9858e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# 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