Merge pull request #3051 from bazbjzy/develop

Added custom sounds ability to Pushover Advanced Settings
This commit is contained in:
Ruud Burger
2014-04-01 08:07:22 +02:00
@@ -25,6 +25,7 @@ class Pushover(Notification):
'token': self.app_token,
'message': toUnicode(message),
'priority': self.conf('priority'),
'sound': self.conf('sound'),
}
if data and data.get('identifier'):
@@ -82,6 +83,11 @@ config = [{
'advanced': True,
'description': 'Also send message when movie is snatched.',
},
{
'name': 'sound',
'advanced': True,
'description': 'Define <a href="https://pushover.net/api%23sounds" target="_blank">custom sound</a> for Pushover alert.'
},
],
}
],