ingress gateway functional

This commit is contained in:
root
2021-05-27 18:54:24 +00:00
parent 0517fa399d
commit 884037e228
23 changed files with 417 additions and 287 deletions

View File

@@ -294,6 +294,12 @@ func CreateExtClient(extclient models.ExtClient) error {
// insert our network into the network table
_, err := collection.InsertOne(ctx, extclient)
defer cancel()
if err != nil {
return err
}
err = SetNetworkNodesLastModified(extclient.Network)
return err
}