Files
ubicloud/model/firewalls_private_subnets.rb
Furkan Sahin 2bf033f69a Make Firewalls assignable to multiple Subnets
With this commit, our backend starts supporting Firewalls <->
PrivateSubnets many_to_many relationship. For that to work, we introduce
a new model called FirewallsPrivateSubnets and maintain the relationship
properly at the de/provisioning times.
2024-05-02 20:34:47 +02:00

8 lines
136 B
Ruby

# frozen_string_literal: true
require_relative "../model"
class FirewallsPrivateSubnets < Sequel::Model
include ResourceMethods
end