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