photoprism/internal/form/label_search.go
Michael Mayer 8b36220c68 Backend: Update label rules
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2020-04-17 21:28:32 +02:00

31 lines
704 B
Go

package form
// PhotoSearch represents search form fields for "/api/v1/labels".
type LabelSearch struct {
Query string `form:"q"`
ID string `form:"id"`
Slug string `form:"slug"`
Name string `form:"name"`
All bool `form:"all"`
Favorites bool `form:"favorites"`
Count int `form:"count" binding:"required"`
Offset int `form:"offset"`
Order string `form:"order"`
}
func (f *LabelSearch) GetQuery() string {
return f.Query
}
func (f *LabelSearch) SetQuery(q string) {
f.Query = q
}
func (f *LabelSearch) ParseQueryString() error {
return ParseQueryString(f)
}
func NewLabelSearch(query string) LabelSearch {
return LabelSearch{Query: query}
}