2017-06-06 19:29:42 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ManifestsController < ApplicationController
|
2019-06-10 12:28:13 +02:00
|
|
|
skip_before_action :store_current_location
|
|
|
|
|
2017-10-02 01:23:32 +02:00
|
|
|
def show
|
2019-07-08 12:03:45 +02:00
|
|
|
expires_in 3.minutes, public: true
|
2017-10-02 01:23:32 +02:00
|
|
|
render json: InstancePresenter.new, serializer: ManifestSerializer
|
2017-06-06 19:29:42 +02:00
|
|
|
end
|
|
|
|
end
|