From f5cd0b4956445d3e30d555a55d58fe8a04560632 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Tue, 18 Apr 2017 01:14:02 +0200 Subject: Rename cache key to exclude_account_ids_for:id, adjust formatting --- app/models/mute.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'app/models/mute.rb') 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 -- cgit