about summary refs log tree commit diff
path: root/app/controllers/manifests_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/manifests_controller.rb')
-rw-r--r--app/controllers/manifests_controller.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/controllers/manifests_controller.rb b/app/controllers/manifests_controller.rb
index 332d845d8..960510f60 100644
--- a/app/controllers/manifests_controller.rb
+++ b/app/controllers/manifests_controller.rb
@@ -2,8 +2,10 @@
 
 class ManifestsController < ApplicationController
   skip_before_action :store_current_location
+  skip_before_action :require_functional!
 
   def show
-    render json: InstancePresenter.new, serializer: ManifestSerializer
+    expires_in 3.minutes, public: true
+    render json: InstancePresenter.new, serializer: ManifestSerializer, root: 'instance'
   end
 end