about summary refs log tree commit diff
path: root/app/models/block.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/block.rb
parent2fd0473aa16603ca85e9e71dfbf4f32420f68327 (diff)
Rename cache key to exclude_account_ids_for:id, adjust formatting
Diffstat (limited to 'app/models/block.rb')
-rw-r--r--app/models/block.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/app/models/block.rb b/app/models/block.rb
index ac1e1b0b1..c978b2200 100644
--- a/app/models/block.rb
+++ b/app/models/block.rb
@@ -8,11 +8,13 @@ class Block < 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("blocked_account_ids:#{target_account_id}")
+    Rails.cache.delete("exclude_account_ids_for:#{account_id}")
+    Rails.cache.delete("exclude_account_ids_for:#{target_account_id}")
   end
 end