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

View file

@ -16,6 +16,6 @@ module RegistrationHelper
end end
def ip_blocked?(remote_ip) 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
end end