Add some caching for HTML versions of statuses pages (#10701)
This commit is contained in:
parent
0402c52f28
commit
26fc21c188
|
@ -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'
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue