Add missing q
query parameter to user and client queries (#29188)
Closes #29190 Signed-off-by: Pascal Helbig <pascal.helbig@progwise.net>
This commit is contained in:
parent
c18a68b4e3
commit
e23db5d0b5
2 changed files with 2 additions and 0 deletions
|
@ -29,6 +29,7 @@ export interface ClientQuery extends PaginatedQuery {
|
|||
clientId?: string;
|
||||
viewableOnly?: boolean;
|
||||
search?: boolean;
|
||||
q?: string;
|
||||
}
|
||||
|
||||
export interface ResourceQuery extends PaginatedQuery {
|
||||
|
|
|
@ -29,6 +29,7 @@ interface UserBaseQuery {
|
|||
firstName?: string;
|
||||
lastName?: string;
|
||||
username?: string;
|
||||
q?: string;
|
||||
}
|
||||
|
||||
export interface UserQuery extends PaginationQuery, SearchQuery, UserBaseQuery {
|
||||
|
|
Loading…
Reference in a new issue