mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 07:37:31 +00:00
chore: move the go code into a subfolder
This commit is contained in:
26
apps/api/internal/domain/user_schema.go
Normal file
26
apps/api/internal/domain/user_schema.go
Normal file
@@ -0,0 +1,26 @@
|
||||
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
|
||||
)
|
Reference in New Issue
Block a user