2017-06-06 13:29:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ManifestsController < ApplicationController
|
2019-06-10 06:28:13 -04:00
|
|
|
skip_before_action :store_current_location
|
|
|
|
|
2017-10-01 19:23:32 -04:00
|
|
|
def show
|
|
|
|
render json: InstancePresenter.new, serializer: ManifestSerializer
|
2017-06-06 13:29:42 -04:00
|
|
|
end
|
|
|
|
end
|