mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
153df2e12f
* feat: provide option to limit (T)OTP checks * fix requests in console * update errors pkg * cleanup * cleanup * improve naming of existing config
15 lines
246 B
Go
15 lines
246 B
Go
package domain
|
|
|
|
import (
|
|
"github.com/zitadel/zitadel/internal/eventstore/v1/models"
|
|
)
|
|
|
|
type LockoutPolicy struct {
|
|
models.ObjectRoot
|
|
|
|
Default bool
|
|
MaxPasswordAttempts uint64
|
|
MaxOTPAttempts uint64
|
|
ShowLockOutFailures bool
|
|
}
|