about summary refs log tree commit diff
path: root/app/controllers
diff options
context:
space:
mode:
authormultiple creatures <dev@multiple-creature.party>2020-01-25 17:25:49 -0600
committermultiple creatures <dev@multiple-creature.party>2020-01-25 17:25:49 -0600
commit2e50d64956f285f178b619218061db9f4420fa25 (patch)
tree3a0eadbff42c70be5e3c7616ef6d35835fee37d3 /app/controllers
parentfa8437f49adf8a6d8649102e557e3b341967c57f (diff)
fix manifests json (thanks @@Frinkeldoodle@transfur.online)
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/manifests_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/manifests_controller.rb b/app/controllers/manifests_controller.rb
index 1e5db4393..491cde745 100644
--- a/app/controllers/manifests_controller.rb
+++ b/app/controllers/manifests_controller.rb
@@ -5,6 +5,6 @@ class ManifestsController < ApplicationController
 
   def show
     expires_in 3.minutes, public: true
-    render json: InstancePresenter.new, serializer: ManifestSerializer
+    render json: InstancePresenter.new, serializer: ManifestSerializer, root: 'instance'
   end
 end