chore: merge branch 'main' into rc

This commit is contained in:
adlerhurst
2023-06-08 08:04:19 +02:00
108 changed files with 3687 additions and 291 deletions

View File

@@ -9,6 +9,7 @@ const (
IDPStateActive
IDPStateInactive
IDPStateRemoved
IDPStateMigrated
idpStateCount
)
@@ -18,7 +19,7 @@ func (s IDPState) Valid() bool {
}
func (s IDPState) Exists() bool {
return s != IDPStateUnspecified && s != IDPStateRemoved
return s != IDPStateUnspecified && s != IDPStateRemoved && s != IDPStateMigrated
}
type IDPType int32