zitadel/internal/domain/policy_password_lockout.go

15 lines
246 B
Go
Raw Normal View History

package domain
import (
"github.com/zitadel/zitadel/internal/eventstore/v1/models"
)
type LockoutPolicy struct {
models.ObjectRoot
Default bool
MaxPasswordAttempts uint64
MaxOTPAttempts uint64
ShowLockOutFailures bool
}