update version

This commit is contained in:
Sinh 2022-11-21 15:33:31 +07:00
parent 43af89bf21
commit 615aa4e963
2 changed files with 10 additions and 1 deletions

7
const.go Normal file
View File

@ -0,0 +1,7 @@
package notification
const (
SortOrderDesc = "-order"
SortOrderAsc = "order"
SortDefault = "-lastPushAt"
)

View File

@ -17,7 +17,8 @@ type PushRequest struct {
Label string `json:"label,omitempty"`
Category string `json:"category,omitempty"`
Sound *Sound `json:"sound,omitempty"`
Link string `json:"link"` // for webpush
Link string `json:"link"` // for webpush
Order int `json:"order"` // for sort
}
// Sound ...
@ -45,6 +46,7 @@ type Query struct {
Status string `json:"status"`
Page int64 `json:"page,omitempty"`
Limit int64 `json:"limit,omitempty"`
Sort string `json:"sort,omitempty"` // SortDefault, SortOrderDesc, SortOrderAsc
}
type query struct {