mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
26c8113930
* feat: change user command side * feat: change user command side * feat: use states on write model * feat: command and query side in auth api * feat: auth commands * feat: check external idp id * feat: user state check * fix: error messages * fix: is active state
31 lines
481 B
Go
31 lines
481 B
Go
package domain
|
|
|
|
type SecondFactorType int32
|
|
|
|
const (
|
|
SecondFactorTypeUnspecified SecondFactorType = iota
|
|
SecondFactorTypeOTP
|
|
SecondFactorTypeU2F
|
|
)
|
|
|
|
type MultiFactorType int32
|
|
|
|
const (
|
|
MultiFactorTypeUnspecified MultiFactorType = iota
|
|
MultiFactorTypeU2FWithPIN
|
|
)
|
|
|
|
type FactorState int32
|
|
|
|
const (
|
|
FactorStateUnspecified FactorState = iota
|
|
FactorStateActive
|
|
FactorStateRemoved
|
|
|
|
factorStateCount
|
|
)
|
|
|
|
func (f FactorState) Valid() bool {
|
|
return f >= 0 && f < factorStateCount
|
|
}
|