mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
7a6ca24625
* check uniqueness on create and register user * change user email, reserve release unique email * usergrant unique aggregate * usergrant uniqueness * validate UserGrant * fix tests * domain is set on username in all orgs * domain in admin * org domain sql * zitadel domain org name * org domains * org iam policy * default org iam policy * SETUP * load login names * login by login name * login name * fix: merge master * fix: merge master * Update internal/user/repository/eventsourcing/user.go Co-authored-by: Livio Amstutz <livio.a@gmail.com> * fix: fix unique domains * fix: rename env variable Co-authored-by: adlerhurst <silvan.reusser@gmail.com> Co-authored-by: Livio Amstutz <livio.a@gmail.com>
82 lines
2.1 KiB
Go
82 lines
2.1 KiB
Go
package systemdefaults
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/config/types"
|
|
"github.com/caos/zitadel/internal/crypto"
|
|
"github.com/caos/zitadel/internal/notification/providers/chat"
|
|
"github.com/caos/zitadel/internal/notification/providers/email"
|
|
"github.com/caos/zitadel/internal/notification/providers/twilio"
|
|
"github.com/caos/zitadel/internal/notification/templates"
|
|
org_model "github.com/caos/zitadel/internal/org/model"
|
|
pol "github.com/caos/zitadel/internal/policy"
|
|
)
|
|
|
|
type SystemDefaults struct {
|
|
SecretGenerators SecretGenerators
|
|
UserVerificationKey *crypto.KeyConfig
|
|
Multifactors MultifactorConfig
|
|
VerificationLifetimes VerificationLifetimes
|
|
DefaultPolicies DefaultPolicies
|
|
IamID string
|
|
SetUp types.IAMSetUp
|
|
Notifications Notifications
|
|
}
|
|
|
|
type SecretGenerators struct {
|
|
PasswordSaltCost int
|
|
ClientSecretGenerator crypto.GeneratorConfig
|
|
InitializeUserCode crypto.GeneratorConfig
|
|
EmailVerificationCode crypto.GeneratorConfig
|
|
PhoneVerificationCode crypto.GeneratorConfig
|
|
PasswordVerificationCode crypto.GeneratorConfig
|
|
}
|
|
|
|
type MultifactorConfig struct {
|
|
OTP OTPConfig
|
|
}
|
|
|
|
type OTPConfig struct {
|
|
Issuer string
|
|
VerificationKey *crypto.KeyConfig
|
|
}
|
|
|
|
type VerificationLifetimes struct {
|
|
PasswordCheck types.Duration
|
|
MfaInitSkip types.Duration
|
|
MfaSoftwareCheck types.Duration
|
|
MfaHardwareCheck types.Duration
|
|
}
|
|
|
|
type DefaultPolicies struct {
|
|
Age pol.PasswordAgePolicyDefault
|
|
Complexity pol.PasswordComplexityPolicyDefault
|
|
Lockout pol.PasswordLockoutPolicyDefault
|
|
OrgIam org_model.OrgIamPolicy
|
|
}
|
|
|
|
type Notifications struct {
|
|
DebugMode bool
|
|
Endpoints Endpoints
|
|
Providers Providers
|
|
TemplateData TemplateData
|
|
}
|
|
|
|
type Endpoints struct {
|
|
InitCode string
|
|
PasswordReset string
|
|
VerifyEmail string
|
|
}
|
|
|
|
type Providers struct {
|
|
Chat chat.ChatConfig
|
|
Email email.EmailConfig
|
|
Twilio twilio.TwilioConfig
|
|
}
|
|
|
|
type TemplateData struct {
|
|
InitCode templates.TemplateData
|
|
PasswordReset templates.TemplateData
|
|
VerifyEmail templates.TemplateData
|
|
VerifyPhone templates.TemplateData
|
|
}
|