about summary refs log tree commit diff
path: root/app/models/status_stat.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/status_stat.rb')
-rw-r--r--app/models/status_stat.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/models/status_stat.rb b/app/models/status_stat.rb
index 9d358776b..024c467e7 100644
--- a/app/models/status_stat.rb
+++ b/app/models/status_stat.rb
@@ -14,4 +14,12 @@
 
 class StatusStat < ApplicationRecord
   belongs_to :status, inverse_of: :status_stat
+
+  after_commit :reset_parent_cache
+
+  private
+
+  def reset_parent_cache
+    Rails.cache.delete("statuses/#{status_id}")
+  end
 end