0
0
Fork 0

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 committed by GitHub
parent 13f54f41ad
commit 2cfa427ea7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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|