mirror of
https://github.com/gravitl/netmaker.git
synced 2025-09-08 14:15:25 +08:00
fix(NET-1044): use new update acls endpoint (#2842)
allow for updating both node and client acls
This commit is contained in:
parent
8227e7899c
commit
b8c1dde152
1 changed files with 1 additions and 1 deletions
|
@ -14,5 +14,5 @@ func GetACL(networkName string) *acls.ACLContainer {
|
|||
|
||||
// UpdateACL - update an ACL
|
||||
func UpdateACL(networkName string, payload *acls.ACLContainer) *acls.ACLContainer {
|
||||
return request[acls.ACLContainer](http.MethodPut, fmt.Sprintf("/api/networks/%s/acls", networkName), payload)
|
||||
return request[acls.ACLContainer](http.MethodPut, fmt.Sprintf("/api/networks/%s/acls/v2", networkName), payload)
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue