fix(api): data migration to update default Portainer authorizations (#3314)

pull/3324/head
Anthony Lapenna 5 years ago committed by GitHub
parent 310b6b34da
commit 0175490161
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,22 @@
package migrator
import (
portainer "github.com/portainer/portainer/api"
)
func (m *Migrator) updateUsersToDBVersion21() error {
legacyUsers, err := m.userService.Users()
if err != nil {
return err
}
for _, user := range legacyUsers {
user.PortainerAuthorizations = portainer.DefaultPortainerAuthorizations()
err = m.userService.UpdateUser(user.ID, &user)
if err != nil {
return err
}
}
return nil
}

@ -287,5 +287,13 @@ func (m *Migrator) Migrate() error {
}
}
// Portainer next
if m.currentDBVersion < 21 {
err := m.updateUsersToDBVersion21()
if err != nil {
return err
}
}
return m.versionService.StoreDBVersion(portainer.DBVersion)
}

@ -905,7 +905,7 @@ const (
// APIVersion is the version number of the Portainer API
APIVersion = "1.22.1"
// DBVersion is the version number of the Portainer database
DBVersion = 20
DBVersion = 21
// AssetsServerURL represents the URL of the Portainer asset server
AssetsServerURL = "https://portainer-io-assets.sfo2.digitaloceanspaces.com"
// MessageOfTheDayURL represents the URL where Portainer MOTD message can be retrieved

Loading…
Cancel
Save