summaryrefslogtreecommitdiff
path: root/app/controllers/concerns/uploads_actions.rb
diff options
context:
space:
mode:
authorTim Zallmann <tzallmann@gitlab.com>2019-01-22 11:09:04 +0100
committerTim Zallmann <tzallmann@gitlab.com>2019-01-22 12:34:11 +0100
commit2d057da183b35d4b4eca6eda8b005d7d068c342a (patch)
tree7c0d0f484707027d29f5faeeb32052f1e54b90ba /app/controllers/concerns/uploads_actions.rb
parent86cda964cf7f289c8b0cd1efa80b3bd4bacfec4e (diff)
downloadgitlab-ce-2d057da183b35d4b4eca6eda8b005d7d068c342a.tar.gz
Turned cache_privately? into cache_publicly?
Also removed unnecessary comment
Diffstat (limited to 'app/controllers/concerns/uploads_actions.rb')
-rw-r--r--app/controllers/concerns/uploads_actions.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/controllers/concerns/uploads_actions.rb b/app/controllers/concerns/uploads_actions.rb
index 7106c61e749..4ec0e94df9a 100644
--- a/app/controllers/concerns/uploads_actions.rb
+++ b/app/controllers/concerns/uploads_actions.rb
@@ -29,12 +29,12 @@ module UploadsActions
def show
return render_404 unless uploader&.exists?
- if cache_privately?
- expires_in 0.seconds, must_revalidate: true, private: true
- else
+ if cache_publicly?
# We need to reset caching from the applications controller to get rid of the no-store value
headers['Cache-Control'] = ''
expires_in 5.minutes, public: true, must_revalidate: false
+ else
+ expires_in 0.seconds, must_revalidate: true, private: true
end
disposition = uploader.image_or_video? ? 'inline' : 'attachment'
@@ -120,8 +120,8 @@ module UploadsActions
nil
end
- def cache_privately?
- true
+ def cache_publicly?
+ false
end
def model