K8s: Implement folder search (#99781)

This commit is contained in:
Stephanie Hingtgen
2025-01-29 17:44:42 -06:00
committed by GitHub
parent 7007342704
commit 2d491a9367
10 changed files with 368 additions and 4 deletions
+9
View File
@@ -179,6 +179,15 @@ type GetFoldersQuery struct {
SignedInUser identity.Requester `json:"-"`
}
type SearchFoldersQuery struct {
OrgID int64
UIDs []string
IDs []int64
Title string
Limit int64
SignedInUser identity.Requester `json:"-"`
}
// GetParentsQuery captures the information required by the folder service to
// return a list of all parent folders of a given folder.
type GetParentsQuery struct {