mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 21:17:32 +00:00
fix(eventstore): improve pagination of handler filter (#6968)
* fix(setup): add filter_offset to `projections.current_states` * fix(eventstore): allow offset in query * fix(handler): offset for already processed events
This commit is contained in:
@@ -81,7 +81,7 @@ type Aggregate struct {
|
||||
// AggregateType is the object name
|
||||
type AggregateType string
|
||||
|
||||
func isAggreagteTypes(a *Aggregate, types ...AggregateType) bool {
|
||||
func isAggregateTypes(a *Aggregate, types ...AggregateType) bool {
|
||||
for _, typ := range types {
|
||||
if a.Type == typ {
|
||||
return true
|
||||
|
Reference in New Issue
Block a user