mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
24 lines
516 B
Go
24 lines
516 B
Go
|
package domain
|
||
|
|
||
|
type SecretGeneratorType int32
|
||
|
|
||
|
const (
|
||
|
SecretGeneratorTypeUnspecified SecretGeneratorType = iota
|
||
|
SecretGeneratorTypeInitCode
|
||
|
SecretGeneratorTypeVerifyEmailCode
|
||
|
SecretGeneratorTypeVerifyPhoneCode
|
||
|
SecretGeneratorTypePasswordResetCode
|
||
|
SecretGeneratorTypePasswordlessInitCode
|
||
|
SecretGeneratorTypeAppSecret
|
||
|
|
||
|
secretGeneratorTypeCount
|
||
|
)
|
||
|
|
||
|
type SecretGeneratorState int32
|
||
|
|
||
|
const (
|
||
|
SecretGeneratorStateUnspecified SecretGeneratorState = iota
|
||
|
SecretGeneratorStateActive
|
||
|
SecretGeneratorStateRemoved
|
||
|
)
|