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

class ManifestsController < ApplicationController
  def show
    render json: InstancePresenter.new, serializer: ManifestSerializer
  end
end