mirror of
https://github.com/zitadel/zitadel
synced 2024-11-22 00:39:36 +00:00
3c07a186fc
* fix: pub sub in new eventstore * fix: todos * fix: todos * fix: todos * fix: todos * fix: todos
20 lines
404 B
Go
20 lines
404 B
Go
package domain
|
|
|
|
type SearchMethod int32
|
|
|
|
const (
|
|
SearchMethodEquals SearchMethod = iota
|
|
SearchMethodStartsWith
|
|
SearchMethodContains
|
|
SearchMethodEqualsIgnoreCase
|
|
SearchMethodStartsWithIgnoreCase
|
|
SearchMethodContainsIgnoreCase
|
|
SearchMethodNotEquals
|
|
SearchMethodGreaterThan
|
|
SearchMethodLessThan
|
|
SearchMethodIsOneOf
|
|
SearchMethodListContains
|
|
SearchMethodEndsWith
|
|
SearchMethodEndsWithIgnoreCase
|
|
)
|