mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
e5731b0d3b
* add setup steps * refactoring * omitempty * cleanup * begin org * create org * setup org * setup org * merge * fixes * fixes * fixes * add project * add oidc application * fix app creation * add resourceOwner to writemodels * resource owner * cleanup * global org, iam project and iam member in setup * logs * logs * logs * cleanup * Update internal/v2/command/project.go Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com> * check project state Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com>
27 lines
699 B
Go
27 lines
699 B
Go
package domain
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/eventstore/models"
|
|
)
|
|
|
|
const (
|
|
IAMID = "IAM"
|
|
)
|
|
|
|
type IAM struct {
|
|
models.ObjectRoot
|
|
|
|
GlobalOrgID string
|
|
IAMProjectID string
|
|
SetUpDone Step
|
|
SetUpStarted Step
|
|
Members []*Member
|
|
IDPs []*IDPConfig
|
|
DefaultLoginPolicy *LoginPolicy
|
|
DefaultLabelPolicy *LabelPolicy
|
|
DefaultOrgIAMPolicy *OrgIAMPolicy
|
|
DefaultPasswordComplexityPolicy *PasswordComplexityPolicy
|
|
DefaultPasswordAgePolicy *PasswordAgePolicy
|
|
DefaultPasswordLockoutPolicy *PasswordLockoutPolicy
|
|
}
|