fix: user grant by id (#6242)

This commit is contained in:
Livio Spring
2023-07-21 13:04:55 +02:00
committed by GitHub
parent cfb8f3c07f
commit cd5e176e30
2 changed files with 5 additions and 1 deletions

View File

@@ -93,6 +93,10 @@ func NewUserGrantGrantIDSearchQuery(id string) (SearchQuery, error) {
return NewTextQuery(UserGrantGrantID, id, TextEquals)
}
func NewUserGrantIDSearchQuery(id string) (SearchQuery, error) {
return NewTextQuery(UserGrantID, id, TextEquals)
}
func NewUserGrantUserTypeQuery(typ domain.UserType) (SearchQuery, error) {
return NewNumberQuery(UserTypeCol, typ, NumberEquals)
}