about summary refs log tree commit diff
path: root/app/controllers/api/v1/instances_controller.rb
diff options
context:
space:
mode:
authordependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>2019-07-23 11:10:42 +0200
committerEugen Rochko <eugen@zeonfederated.com>2019-07-23 11:10:42 +0200
commit1955aa9f7da8c72312aaafde3142b5ba910d2d0d (patch)
tree23243828eb48595c8f89474fe1f52caba0164c3f /app/controllers/api/v1/instances_controller.rb
parentcd68714393b4429defc3d1df2451c98e6784d0c1 (diff)
Bump active_model_serializers from 0.10.9 to 0.10.10 (#11311)
* Bump active_model_serializers from 0.10.9 to 0.10.10

Bumps [active_model_serializers](https://github.com/rails-api/active_model_serializers) from 0.10.9 to 0.10.10.
- [Release notes](https://github.com/rails-api/active_model_serializers/releases)
- [Changelog](https://github.com/rails-api/active_model_serializers/blob/v0.10.10/CHANGELOG.md)
- [Commits](https://github.com/rails-api/active_model_serializers/compare/v0.10.9...v0.10.10)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Add root option to render method
Diffstat (limited to 'app/controllers/api/v1/instances_controller.rb')
-rw-r--r--app/controllers/api/v1/instances_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/api/v1/instances_controller.rb b/app/controllers/api/v1/instances_controller.rb
index b68c78615..93e4f0003 100644
--- a/app/controllers/api/v1/instances_controller.rb
+++ b/app/controllers/api/v1/instances_controller.rb
@@ -6,6 +6,6 @@ class Api::V1::InstancesController < Api::BaseController
 
   def show
     expires_in 3.minutes, public: true
-    render_with_cache json: {}, serializer: REST::InstanceSerializer
+    render_with_cache json: {}, serializer: REST::InstanceSerializer, root: 'instance'
   end
 end