This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2021-01-16 20:41:39 +00:00
|
|
|
package ak
|
|
|
|
|
|
|
|
import (
|
2021-01-16 20:45:24 +00:00
|
|
|
"goauthentik.io/outpost/pkg/client/outposts"
|
|
|
|
"goauthentik.io/outpost/pkg/models"
|
2021-01-16 20:41:39 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func (a *APIController) Update() ([]*models.ProxyOutpostConfig, error) {
|
|
|
|
providers, err := a.Client.Outposts.OutpostsProxyList(outposts.NewOutpostsProxyListParams(), a.Auth)
|
|
|
|
if err != nil {
|
|
|
|
a.logger.WithError(err).Error("Failed to fetch providers")
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return providers.Payload.Results, nil
|
|
|
|
}
|