mirror of
https://github.com/binwiederhier/ntfy.git
synced 2025-04-05 06:07:34 +03:00
Add clear=true|false support to actions
This commit is contained in:
parent
8f4a1db1f0
commit
12f85cceb1
4 changed files with 72 additions and 45 deletions
|
@ -45,8 +45,9 @@ type attachment struct {
|
|||
|
||||
type action struct {
|
||||
ID string `json:"id"`
|
||||
Action string `json:"action"`
|
||||
Label string `json:"label"` // "view", "broadcast", or "http"
|
||||
Action string `json:"action"` // "view", "broadcast", or "http"
|
||||
Label string `json:"label"` // action button label
|
||||
Clear bool `json:"clear"` // clear notification after successful execution
|
||||
URL string `json:"url,omitempty"` // used in "view" and "http" actions
|
||||
Method string `json:"method,omitempty"` // used in "http" action, default is POST (!)
|
||||
Headers map[string]string `json:"headers,omitempty"` // used in "http" action
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue