mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
9d4f296c62
* fix: rename iam command side to instance * fix: rename iam command side to instance * fix: rename iam command side to instance * fix: rename iam command side to instance * fix: rename orgiampolicy to domain policy * fix: merge conflicts * fix: protos * fix: md files * implement deprecated org iam policy again Co-authored-by: Livio Amstutz <livio.a@gmail.com>
27 lines
699 B
Go
27 lines
699 B
Go
package domain
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/eventstore/v1/models"
|
|
)
|
|
|
|
const (
|
|
IAMID = "IAM"
|
|
)
|
|
|
|
type Instance struct {
|
|
models.ObjectRoot
|
|
|
|
GlobalOrgID string
|
|
IAMProjectID string
|
|
SetUpDone Step
|
|
SetUpStarted Step
|
|
Members []*Member
|
|
IDPs []*IDPConfig
|
|
DefaultLoginPolicy *LoginPolicy
|
|
DefaultLabelPolicy *LabelPolicy
|
|
DefaultDomainPolicy *DomainPolicy
|
|
DefaultPasswordComplexityPolicy *PasswordComplexityPolicy
|
|
DefaultPasswordAgePolicy *PasswordAgePolicy
|
|
DefaultPasswordLockoutPolicy *LockoutPolicy
|
|
}
|