mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
3c07a186fc
* fix: pub sub in new eventstore * fix: todos * fix: todos * fix: todos * fix: todos * fix: todos
48 lines
1.0 KiB
Go
48 lines
1.0 KiB
Go
package model
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/domain"
|
|
"time"
|
|
)
|
|
|
|
type PasswordLockoutPolicyView struct {
|
|
AggregateID string
|
|
MaxAttempts uint64
|
|
ShowLockOutFailures bool
|
|
Default bool
|
|
|
|
CreationDate time.Time
|
|
ChangeDate time.Time
|
|
Sequence uint64
|
|
}
|
|
|
|
type PasswordLockoutPolicySearchRequest struct {
|
|
Offset uint64
|
|
Limit uint64
|
|
SortingColumn PasswordLockoutPolicySearchKey
|
|
Asc bool
|
|
Queries []*PasswordLockoutPolicySearchQuery
|
|
}
|
|
|
|
type PasswordLockoutPolicySearchKey int32
|
|
|
|
const (
|
|
PasswordLockoutPolicySearchKeyUnspecified PasswordLockoutPolicySearchKey = iota
|
|
PasswordLockoutPolicySearchKeyAggregateID
|
|
)
|
|
|
|
type PasswordLockoutPolicySearchQuery struct {
|
|
Key PasswordLockoutPolicySearchKey
|
|
Method domain.SearchMethod
|
|
Value interface{}
|
|
}
|
|
|
|
type PasswordLockoutPolicySearchResponse struct {
|
|
Offset uint64
|
|
Limit uint64
|
|
TotalResult uint64
|
|
Result []*PasswordLockoutPolicyView
|
|
Sequence uint64
|
|
Timestamp time.Time
|
|
}
|