mute.rb 836 B

123456789101112131415161718192021222324252627282930313233
  1. # frozen_string_literal: true
  2. # == Schema Information
  3. #
  4. # Table name: mutes
  5. #
  6. # id :bigint(8) not null, primary key
  7. # created_at :datetime not null
  8. # updated_at :datetime not null
  9. # account_id :bigint(8) not null
  10. # target_account_id :bigint(8) not null
  11. # hide_notifications :boolean default(TRUE), not null
  12. # expires_at :datetime
  13. #
  14. class Mute < ApplicationRecord
  15. include Paginable
  16. include RelationshipCacheable
  17. include Expireable
  18. belongs_to :account
  19. belongs_to :target_account, class_name: 'Account'
  20. validates :account_id, uniqueness: { scope: :target_account_id }
  21. after_commit :remove_blocking_cache
  22. private
  23. def remove_blocking_cache
  24. Rails.cache.delete("exclude_account_ids_for:#{account_id}")
  25. end
  26. end