mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
27 lines
546 B
Go
27 lines
546 B
Go
|
package domain
|
||
|
|
||
|
type UserSchemaState int32
|
||
|
|
||
|
const (
|
||
|
UserSchemaStateUnspecified UserSchemaState = iota
|
||
|
UserSchemaStateActive
|
||
|
UserSchemaStateInactive
|
||
|
UserSchemaStateDeleted
|
||
|
userSchemaStateCount
|
||
|
)
|
||
|
|
||
|
type AuthenticatorType int32
|
||
|
|
||
|
const (
|
||
|
AuthenticatorTypeUnspecified AuthenticatorType = iota
|
||
|
AuthenticatorTypeUsername
|
||
|
AuthenticatorTypePassword
|
||
|
AuthenticatorTypeWebAuthN
|
||
|
AuthenticatorTypeTOTP
|
||
|
AuthenticatorTypeOTPEmail
|
||
|
AuthenticatorTypeOTPSMS
|
||
|
AuthenticatorTypeAuthenticationKey
|
||
|
AuthenticatorTypeIdentityProvider
|
||
|
authenticatorTypeCount
|
||
|
)
|