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

class ManifestsController < ApplicationController
  skip_before_action :store_current_location

  def show
    render json: InstancePresenter.new, serializer: ManifestSerializer
  end
end