Add some caching for HTML versions of statuses pages (#10701)

This commit is contained in:
ThibG 2019-05-09 22:03:44 +02:00 committed by Eugen Rochko
parent 0402c52f28
commit 26fc21c188
2 changed files with 9 additions and 1 deletions

View File

@ -27,7 +27,10 @@ class StatusesController < ApplicationController
def show
respond_to do |format|
format.html do
mark_cacheable! unless user_signed_in?
unless user_signed_in?
skip_session!
expires_in 10.seconds, public: true
end
@body_classes = 'with-modals'

View File

@ -15,6 +15,11 @@ class StreamEntriesController < ApplicationController
def show
respond_to do |format|
format.html do
unless user_signed_in?
skip_session!
expires_in 5.minutes, public: true
end
redirect_to short_account_status_url(params[:account_username], @stream_entry.activity) if @type == 'status'
end