This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-06-06 10:29:42 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ManifestsController < ApplicationController
|
2019-06-10 03:28:13 -07:00
|
|
|
skip_before_action :store_current_location
|
|
|
|
|
2017-10-01 16:23:32 -07:00
|
|
|
def show
|
2019-07-08 03:03:45 -07:00
|
|
|
expires_in 3.minutes, public: true
|
2019-07-23 02:10:42 -07:00
|
|
|
render json: InstancePresenter.new, serializer: ManifestSerializer, root: 'instance'
|
2017-06-06 10:29:42 -07:00
|
|
|
end
|
|
|
|
end
|