FIX: Don't show an anonymous cache if there is a flash
This commit is contained in:
parent
bb79e6aff7
commit
db5379508e
|
@ -243,7 +243,7 @@ class ApplicationController < ActionController::Base
|
||||||
end
|
end
|
||||||
|
|
||||||
def can_cache_content?
|
def can_cache_content?
|
||||||
!current_user.present?
|
current_user.blank? && flash[:authentication_data].blank?
|
||||||
end
|
end
|
||||||
|
|
||||||
# Our custom cache method
|
# Our custom cache method
|
||||||
|
|
Loading…
Reference in New Issue