2
0

Tidy up association declaration in Instance model (#28880)

This commit is contained in:
Matt Jankowski
2024-01-24 12:30:28 -05:00
committed by GitHub
parent 9c5be13980
commit 38f7f8b909

View File

@@ -13,12 +13,12 @@ class Instance < ApplicationRecord
attr_accessor :failure_days
has_many :accounts, foreign_key: :domain, primary_key: :domain, inverse_of: false
with_options foreign_key: :domain, primary_key: :domain, inverse_of: false do
belongs_to :domain_block
belongs_to :domain_allow
belongs_to :unavailable_domain # skipcq: RB-RL1031
belongs_to :unavailable_domain
has_many :accounts, dependent: nil
end
scope :searchable, -> { where.not(domain: DomainBlock.select(:domain)) }