mirror of
https://github.com/mastodon/mastodon.git
synced 2025-02-07 07:25:09 +00:00
![Eugen Rochko](/assets/img/avatar_default.png)
- Reduce duplicate queries - Remove n+1 queries - Add accounts count to detailed view - Add separate action log entry for updating existing domain blocks
14 lines
282 B
Ruby
14 lines
282 B
Ruby
# frozen_string_literal: true
|
|
|
|
module DomainMaterializable
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
after_create_commit :refresh_instances_view
|
|
end
|
|
|
|
def refresh_instances_view
|
|
Instance.refresh unless domain.nil? || Instance.where(domain: domain).exists?
|
|
end
|
|
end
|