mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
8bfa1a083c
* feat: get views and failed events * feat: get views and failed events * feat: get views and failed events * Update internal/view/repository/sequence.go Co-authored-by: Livio Amstutz <livio.a@gmail.com> * Update internal/view/repository/general_query.go Co-authored-by: Livio Amstutz <livio.a@gmail.com> Co-authored-by: Livio Amstutz <livio.a@gmail.com>
24 lines
435 B
Go
24 lines
435 B
Go
package model
|
|
|
|
import "github.com/caos/zitadel/internal/model"
|
|
|
|
type GeneralSearchRequest struct {
|
|
Offset uint64
|
|
Limit uint64
|
|
SortingColumn GeneralSearchKey
|
|
Asc bool
|
|
Queries []*GeneralSearchQuery
|
|
}
|
|
|
|
type GeneralSearchKey int32
|
|
|
|
const (
|
|
GeneralSearchKeyUnspecified GeneralSearchKey = iota
|
|
)
|
|
|
|
type GeneralSearchQuery struct {
|
|
Key GeneralSearchKey
|
|
Method model.SearchMethod
|
|
Value interface{}
|
|
}
|