2017-06-06 11:29:42 -06:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-04-19 08:07:29 -06:00
|
|
|
class ManifestsController < ActionController::Base # rubocop:disable Rails/ApplicationController
|
2023-04-25 14:14:44 -06:00
|
|
|
# Prevent `active_model_serializer`'s `ActionController::Serialization` from calling `current_user`
|
|
|
|
# and thus re-issuing session cookies
|
|
|
|
serialization_scope nil
|
|
|
|
|
2017-10-01 17:23:32 -06:00
|
|
|
def show
|
2019-07-08 04:03:45 -06:00
|
|
|
expires_in 3.minutes, public: true
|
2019-07-23 03:10:42 -06:00
|
|
|
render json: InstancePresenter.new, serializer: ManifestSerializer, root: 'instance'
|
2017-06-06 11:29:42 -06:00
|
|
|
end
|
|
|
|
end
|