mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-08 04:12:59 +00:00
13 lines
194 B
Go
13 lines
194 B
Go
|
|
package domain
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/caos/zitadel/internal/eventstore/models"
|
||
|
|
)
|
||
|
|
|
||
|
|
type PasswordLockoutPolicy struct {
|
||
|
|
models.ObjectRoot
|
||
|
|
|
||
|
|
MaxAttempts uint64
|
||
|
|
ShowLockOutFailures bool
|
||
|
|
}
|