add SortBy and SortDirection

llb-desktop-client-sort-backup
Emilia Grant 4 months ago committed by Sepehr
parent 06af2baf31
commit 1016713052

@ -17,6 +17,21 @@ import (
"github.com/hashicorp/go-bexpr"
)
type SortBy string
const (
SortByDefault SortBy = ""
SortByName SortBy = "name"
)
type SortDirection string
const (
SortDirectionDefault SortDirection = ""
Ascending SortDirection = "asc"
Descending SortDirection = "desc"
)
type SearchableResource string
const (

Loading…
Cancel
Save