about summary refs log tree commit diff
path: root/app/models/mute.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-04-18 01:14:02 +0200
committerEugen Rochko <eugen@zeonfederated.com>2017-04-18 01:14:02 +0200
commitf5cd0b4956445d3e30d555a55d58fe8a04560632 (patch)
treea6ff64dec8a236a5d4807452f511379cf5d2d188 /app/models/mute.rb
parent2fd0473aa16603ca85e9e71dfbf4f32420f68327 (diff)
Rename cache key to exclude_account_ids_for:id, adjust formatting
Diffstat (limited to 'app/models/mute.rb')
-rw-r--r--app/models/mute.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/app/models/mute.rb b/app/models/mute.rb
index 0cf17be4f..d0de62ed5 100644
--- a/app/models/mute.rb
+++ b/app/models/mute.rb
@@ -8,10 +8,12 @@ class Mute < ApplicationRecord
 
   validates :account_id, uniqueness: { scope: :target_account_id }
 
-  after_create :remove_blocking_cache
+  after_create  :remove_blocking_cache
   after_destroy :remove_blocking_cache
 
+  private
+
   def remove_blocking_cache
-    Rails.cache.delete("blocked_account_ids:#{account_id}")
+    Rails.cache.delete("exclude_account_ids_for:#{account_id}")
   end
 end