mirror of https://github.com/portainer/portainer
21 lines
422 B
Go
21 lines
422 B
Go
![]() |
package migrator
|
||
![]() |
|
||
|
import "github.com/portainer/portainer"
|
||
|
|
||
|
func (m *Migrator) updateEndpointsToVersion8() error {
|
||
![]() |
legacyEndpoints, err := m.endpointService.Endpoints()
|
||
![]() |
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
for _, endpoint := range legacyEndpoints {
|
||
|
endpoint.Extensions = []portainer.EndpointExtension{}
|
||
![]() |
err = m.endpointService.UpdateEndpoint(endpoint.ID, &endpoint)
|
||
![]() |
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|