Expire user pages when their image changes
This commit is contained in:
parent
da572b90c7
commit
ecbad776fb
1 changed files with 2 additions and 1 deletions
|
@ -15,7 +15,8 @@ private
|
|||
if old_record and
|
||||
(new_record.nil? or
|
||||
old_record.visible? != new_record.visible? or
|
||||
old_record.display_name != new_record.display_name)
|
||||
old_record.display_name != new_record.display_name or
|
||||
old_record.image != new_record.image)
|
||||
old_record.diary_entries.each do |entry|
|
||||
expire_action(:controller => 'diary_entry', :action => 'view', :display_name => old_record.display_name, :id => entry.id)
|
||||
expire_action(:controller => 'diary_entry', :action => 'list', :language => entry.language_code, :display_name => nil)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue