Change domain block behaviour to prevent creation of accounts from suspended domains (#11219)

This commit is contained in:
Eugen Rochko
2019-07-01 19:13:30 +02:00
parent c8bf30df92
commit d9a024840e
2 changed files with 4 additions and 2 deletions

View File

@ -48,7 +48,7 @@ class ResolveAccountService < BaseService
return
end
return if links_missing?
return if links_missing? || auto_suspend?
return Account.find_local(@username) if TagManager.instance.local_domain?(@domain)
RedisLock.acquire(lock_options) do |lock|