about summary refs log tree commit diff
path: root/app/controllers/api/v1/instances
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2019-05-03 20:39:19 +0200
committerEugen Rochko <eugen@zeonfederated.com>2019-05-03 20:39:19 +0200
commit91634947f88fb3004b5e853598f02fbe39a55768 (patch)
tree8be6aeecfd94d4a848bc6dc20d74c506da36ef60 /app/controllers/api/v1/instances
parent011b032300657ccca4a42866749afc6ec2588ecc (diff)
Explicitly disable storage of REST API results (#10655)
Fixes #10652
Diffstat (limited to 'app/controllers/api/v1/instances')
-rw-r--r--app/controllers/api/v1/instances/activity_controller.rb1
-rw-r--r--app/controllers/api/v1/instances/peers_controller.rb1
2 files changed, 2 insertions, 0 deletions
diff --git a/app/controllers/api/v1/instances/activity_controller.rb b/app/controllers/api/v1/instances/activity_controller.rb
index e14e0aee8..09edfe365 100644
--- a/app/controllers/api/v1/instances/activity_controller.rb
+++ b/app/controllers/api/v1/instances/activity_controller.rb
@@ -2,6 +2,7 @@
 
 class Api::V1::Instances::ActivityController < Api::BaseController
   before_action :require_enabled_api!
+  skip_before_action :set_cache_headers
 
   respond_to :json
 
diff --git a/app/controllers/api/v1/instances/peers_controller.rb b/app/controllers/api/v1/instances/peers_controller.rb
index 2070c487d..a8891d126 100644
--- a/app/controllers/api/v1/instances/peers_controller.rb
+++ b/app/controllers/api/v1/instances/peers_controller.rb
@@ -2,6 +2,7 @@
 
 class Api::V1::Instances::PeersController < Api::BaseController
   before_action :require_enabled_api!
+  skip_before_action :set_cache_headers
 
   respond_to :json