mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 21:47:32 +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:
19
internal/domain/search_method.go
Normal file
19
internal/domain/search_method.go
Normal file
@@ -0,0 +1,19 @@
|
||||
package domain
|
||||
|
||||
type SearchMethod int32
|
||||
|
||||
const (
|
||||
SearchMethodEquals SearchMethod = iota
|
||||
SearchMethodStartsWith
|
||||
SearchMethodContains
|
||||
SearchMethodEqualsIgnoreCase
|
||||
SearchMethodStartsWithIgnoreCase
|
||||
SearchMethodContainsIgnoreCase
|
||||
SearchMethodNotEquals
|
||||
SearchMethodGreaterThan
|
||||
SearchMethodLessThan
|
||||
SearchMethodIsOneOf
|
||||
SearchMethodListContains
|
||||
SearchMethodEndsWith
|
||||
SearchMethodEndsWithIgnoreCase
|
||||
)
|
Reference in New Issue
Block a user