Skip to content

Commit

Permalink
Add GetSettingMgmt and UpdateSettingMgmt functions
Browse files Browse the repository at this point in the history
  • Loading branch information
kurtmc authored and paultyng committed Mar 31, 2021
1 parent 0c90e4c commit 74e2b9d
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions unifi/setting_mgmt.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package unifi

import (
"context"
)

func (c *Client) GetSettingMgmt(ctx context.Context, site string) (*SettingMgmt, error) {
return c.getSettingMgmt(ctx, site)
}

func (c *Client) UpdateSettingMgmt(ctx context.Context, site string, d *SettingMgmt) (*SettingMgmt, error) {
return c.updateSettingMgmt(ctx, site, d)
}

0 comments on commit 74e2b9d

Please sign in to comment.