mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
61d16e4621
* add setup steps * refactoring * omitempty * cleanup * fixes
23 lines
676 B
Go
23 lines
676 B
Go
package domain
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/eventstore/models"
|
|
)
|
|
|
|
type IAM struct {
|
|
models.ObjectRoot
|
|
|
|
GlobalOrgID string
|
|
IAMProjectID string
|
|
SetUpDone Step
|
|
SetUpStarted Step
|
|
Members []*IAMMember
|
|
IDPs []*IDPConfig
|
|
DefaultLoginPolicy *LoginPolicy
|
|
DefaultLabelPolicy *LabelPolicy
|
|
DefaultOrgIAMPolicy *OrgIAMPolicy
|
|
DefaultPasswordComplexityPolicy *PasswordComplexityPolicy
|
|
DefaultPasswordAgePolicy *PasswordAgePolicy
|
|
DefaultPasswordLockoutPolicy *PasswordLockoutPolicy
|
|
}
|