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