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