photoprism/internal/form/account_search.go
Michael Mayer c882b56f82 Sync: Download remote files #225
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2020-04-04 17:19:34 +02:00

29 lines
638 B
Go

package form
// AccountSearch represents search form fields for "/api/v1/accounts".
type AccountSearch struct {
Query string `form:"q"`
Share bool `form:"share"`
Sync bool `form:"sync"`
Status string `form:"status"`
Count int `form:"count" binding:"required"`
Offset int `form:"offset"`
Order string `form:"order"`
}
func (f *AccountSearch) GetQuery() string {
return f.Query
}
func (f *AccountSearch) SetQuery(q string) {
f.Query = q
}
func (f *AccountSearch) ParseQueryString() error {
return ParseQueryString(f)
}
func NewAccountSearch(query string) AccountSearch {
return AccountSearch{Query: query}
}