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.
8 lines
136 B
Ruby
8 lines
136 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative "../model"
|
|
|
|
class FirewallsPrivateSubnets < Sequel::Model
|
|
include ResourceMethods
|
|
end
|