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