Actually set notifier config when sending notifications

This commit is contained in:
JonnyWong16 2016-10-09 15:19:58 -07:00 committed by JonnyWong16
parent f42d7b0da0
commit 44f39e7fea
3 changed files with 16 additions and 14 deletions

View file

@ -2897,6 +2897,11 @@ class WebInterface(object):
"incl_subject": 1,
"disable_web_preview": 0
},
"config_options": [{...}, ...]
"actions": {"on_play": 0,
"on_stop": 0,
...
},
"notify_text": {"on_play": {"subject": "...",
"body": "..."
}
@ -2904,12 +2909,7 @@ class WebInterface(object):
"body": "..."
}
...
},
"actions": {"on_play": 0,
"on_stop": 0,
...
}
}
}
```
"""