You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
522 B

  1. # frozen_string_literal: true
  2. class Block < ApplicationRecord
  3. include Paginable
  4. belongs_to :account, required: true
  5. belongs_to :target_account, class_name: 'Account', required: true
  6. validates :account_id, uniqueness: { scope: :target_account_id }
  7. after_create :remove_blocking_cache
  8. after_destroy :remove_blocking_cache
  9. private
  10. def remove_blocking_cache
  11. Rails.cache.delete("exclude_account_ids_for:#{account_id}")
  12. Rails.cache.delete("exclude_account_ids_for:#{target_account_id}")
  13. end
  14. end