ubicloud/model/globally_blocked_dnsname.rb
Furkan Sahin 540b34854f Add globally blocked dnsnames to firewall rules
The nftables that is used for firewall rules gets 2 new sets. These are
used to block incoming and outgoing traffic to select IP addresses.
2024-03-13 10:50:40 +01:00

11 lines
182 B
Ruby

# frozen_string_literal: true
require_relative "../model"
class GloballyBlockedDnsname < Sequel::Model
include ResourceMethods
def self.ubid_type
UBID::TYPE_ETC
end
end