2021-01-05 08:33:45 +00:00
|
|
|
package domain
|
|
|
|
|
|
|
|
import (
|
2021-02-23 14:13:04 +00:00
|
|
|
"github.com/caos/zitadel/internal/eventstore/v1/models"
|
2021-01-05 08:33:45 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type PasswordLockoutPolicy struct {
|
|
|
|
models.ObjectRoot
|
|
|
|
|
|
|
|
MaxAttempts uint64
|
|
|
|
ShowLockOutFailures bool
|
|
|
|
}
|