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.
27 lines
571 B
27 lines
571 B
8 years ago
|
# frozen_string_literal: true
|
||
|
# == Schema Information
|
||
|
#
|
||
|
# Table name: account_domain_blocks
|
||
|
#
|
||
|
# id :integer not null, primary key
|
||
|
# account_id :integer
|
||
|
# domain :string
|
||
|
# created_at :datetime not null
|
||
|
# updated_at :datetime not null
|
||
|
#
|
||
|
|
||
|
class AccountDomainBlock < ApplicationRecord
|
||
|
include Paginable
|
||
|
|
||
|
belongs_to :account, required: true
|
||
|
|
||
|
after_create :remove_blocking_cache
|
||
|
after_destroy :remove_blocking_cache
|
||
|
|
||
|
private
|
||
|
|
||
|
def remove_blocking_cache
|
||
|
Rails.cache.delete("exclude_domains_for:#{account_id}")
|
||
|
end
|
||
|
end
|