Skip to content

Commit

Permalink
Expose SettingRadius API
Browse files Browse the repository at this point in the history
  • Loading branch information
james-stephenson authored and paultyng committed Oct 9, 2020
1 parent 3f0b230 commit 4b8ec1e
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions unifi/setting_radius.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package unifi

import (
"context"
)

func (c *Client) GetSettingRadius(ctx context.Context, site string) (*SettingRadius, error) {
return c.getSettingRadius(ctx, site)
}

func (c *Client) UpdateSettingRadius(ctx context.Context, site string, d *SettingRadius) (*SettingRadius, error) {
return c.updateSettingRadius(ctx, site, d)
}

0 comments on commit 4b8ec1e

Please sign in to comment.