mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-11 19:12:22 +00:00
fix: todos (#1346)
* fix: pub sub in new eventstore * fix: todos * fix: todos * fix: todos * fix: todos * fix: todos
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
package repository
|
||||
|
||||
import (
|
||||
"github.com/caos/zitadel/internal/domain"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/jinzhu/gorm"
|
||||
|
||||
caos_errs "github.com/caos/zitadel/internal/errors"
|
||||
int_model "github.com/caos/zitadel/internal/model"
|
||||
"github.com/caos/zitadel/internal/view/model"
|
||||
)
|
||||
|
||||
@@ -60,8 +60,8 @@ func (q *sequenceSearchQuery) GetKey() ColumnKey {
|
||||
return q.key
|
||||
}
|
||||
|
||||
func (q *sequenceSearchQuery) GetMethod() int_model.SearchMethod {
|
||||
return int_model.SearchMethodEquals
|
||||
func (q *sequenceSearchQuery) GetMethod() domain.SearchMethod {
|
||||
return domain.SearchMethodEquals
|
||||
}
|
||||
|
||||
func (q *sequenceSearchQuery) GetValue() interface{} {
|
||||
|
||||
Reference in New Issue
Block a user