mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
b9c938594c
* policy added * Make it executable * Make it executable, corrections * password age policy added * password lockout policy added * corrections * policy added * Make it executable * Make it executable, corrections * password age policy added * password lockout policy added * corrections * fix(repository): remove second policy * complaints corrected * Init tests * add some tests * more tests added * systemfefaults added * default values load added * check for default value added * fixes * fixed * create policy if not exists * eventstore tests added Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
17 lines
329 B
Go
17 lines
329 B
Go
package model
|
|
|
|
import "github.com/caos/zitadel/internal/eventstore/models"
|
|
|
|
type PasswordLockoutPolicy struct {
|
|
models.ObjectRoot
|
|
|
|
Description string
|
|
State PolicyState
|
|
MaxAttempts uint64
|
|
ShowLockOutFailures bool
|
|
}
|
|
|
|
func (p *PasswordLockoutPolicy) IsValid() bool {
|
|
return p.Description != ""
|
|
}
|