Browse Source

Add "on snatch" options to XBMC & Plex notifications

fix #1379
pull/1765/head
Ruud 12 years ago
parent
commit
0b693bba4e
  1. 7
      couchpotato/core/notifications/plex/__init__.py
  2. 7
      couchpotato/core/notifications/xbmc/__init__.py

7
couchpotato/core/notifications/plex/__init__.py

@ -22,6 +22,13 @@ config = [{
'description': 'Default should be on localhost',
'advanced': True,
},
{
'name': 'on_snatch',
'default': 0,
'type': 'bool',
'advanced': True,
'description': 'Also send message when movie is snatched.',
},
],
}
],

7
couchpotato/core/notifications/xbmc/__init__.py

@ -31,6 +31,13 @@ config = [{
'default': '',
'type': 'password',
},
{
'name': 'on_snatch',
'default': 0,
'type': 'bool',
'advanced': True,
'description': 'Also send message when movie is snatched.',
},
],
}
],

Loading…
Cancel
Save