Use enum-generated `IpBlock.severity...` scopes (#31210)

This commit is contained in:
Matt Jankowski 2024-11-08 09:23:52 -05:00 committed by GitHub
parent 10c895dc84
commit 1e71c4e247
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -16,6 +16,6 @@ module RegistrationHelper
end
def ip_blocked?(remote_ip)
IpBlock.where(severity: :sign_up_block).containing(remote_ip.to_s).exists?
IpBlock.severity_sign_up_block.containing(remote_ip.to_s).exists?
end
end