Skip to content

Commit 96f9c76

Browse files
committed
fix: should not put query to url
1 parent cd89812 commit 96f9c76

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

search.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ type SearchSort struct {
5252

5353
type SearchParameters struct {
5454
PaginationParameters
55-
Query string `json:"query"`
56-
Sort SearchSort `json:"sort"`
57-
Filter SearchFilter `json:"filter"`
55+
Query string `json:"query" url:"-"`
56+
Sort SearchSort `json:"sort" url:"-"`
57+
Filter SearchFilter `json:"filter" url:"-"`
5858
}
5959

6060
type SearchableObject interface {

0 commit comments

Comments
 (0)