2019-07-02 08:10:25 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ManifestsController < ApplicationController
|
2020-06-16 14:31:55 +01:00
|
|
|
skip_before_action :store_current_location
|
|
|
|
|
2019-07-02 08:10:25 +01:00
|
|
|
def show
|
|
|
|
render json: InstancePresenter.new, serializer: ManifestSerializer
|
|
|
|
end
|
|
|
|
end
|