Add InetContainer with scopes of containing and contained (#32802)

This commit is contained in:
Matt Jankowski
2024-11-08 05:08:36 -05:00
committed by GitHub
parent df54196a14
commit bde0f1239a
7 changed files with 18 additions and 6 deletions

View File

@@ -80,9 +80,9 @@ module Mastodon::CLI
end
ip_blocks = if options[:force]
IpBlock.where('ip >>= ?', address)
IpBlock.containing(address)
else
IpBlock.where('ip <<= ?', address)
IpBlock.contained_by(address)
end
if ip_blocks.empty?