Add coverage for CLI::Accounts#fix_duplications
task (#30639)
This commit is contained in:
parent
e1fa456c7c
commit
2f0d0fc127
3 changed files with 21 additions and 1 deletions
|
@ -145,6 +145,7 @@ class Account < ApplicationRecord
|
|||
scope :with_username, ->(value) { where arel_table[:username].lower.eq(value.to_s.downcase) }
|
||||
scope :with_domain, ->(value) { where arel_table[:domain].lower.eq(value&.to_s&.downcase) }
|
||||
scope :without_memorial, -> { where(memorial: false) }
|
||||
scope :duplicate_uris, -> { select(:uri, Arel.star.count).group(:uri).having(Arel.star.count.gt(1)) }
|
||||
|
||||
after_update_commit :trigger_update_webhooks
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue