mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
710652ef24
* feat: project role remove * feat: search queries * feat: search queries * feat: cascade remove/change project role * fix: comment in project grant * fix: remove projecr grant * fix: only search usergrants of my org * fix: delete usergrants * fix: delete usergrants * fix: check if role exists on project grant * feat: bulk add project role * fix: tests * fix: update user grants on project update * fix: return roles * feat: add resourceowner name on project grants * fix: migration number * fix: tests * fix: generate protos * fix: some unnecessary code
18 lines
374 B
Go
18 lines
374 B
Go
package model
|
|
|
|
type SearchMethod int32
|
|
|
|
const (
|
|
SEARCHMETHOD_EQUALS SearchMethod = iota
|
|
SEARCHMETHOD_STARTS_WITH
|
|
SEARCHMETHOD_CONTAINS
|
|
SEARCHMETHOD_EQUALS_IGNORE_CASE
|
|
SEARCHMETHOD_STARTS_WITH_IGNORE_CASE
|
|
SEARCHMETHOD_CONTAINS_IGNORE_CASE
|
|
SEARCHMETHOD_NOT_EQUALS
|
|
SEARCHMETHOD_GREATER_THAN
|
|
SEARCHMETHOD_LESS_THAN
|
|
SEARCHMETHOD_IS_ONE_OF
|
|
SEARCHMETHOD_LIST_CONTAINS
|
|
)
|