summaryrefslogtreecommitdiffstats
path: root/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'config.py')
-rw-r--r--config.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/config.py b/config.py
index 9849129..c170fb9 100644
--- a/config.py
+++ b/config.py
@@ -52,5 +52,10 @@ Spotify = conf.registerPlugin('Spotify')
# conf.registerGlobalValue(Spotify, 'someConfigVariableName',
# registry.Boolean(False, _("""Help for someConfigVariableName.""")))
+conf.registerGlobalValue(Spotify, 'clientID',
+ registry.string('', """ Sets the ClientID obtainable from https://developer.spotify.com/""", private=True))
+
+conf.registerGlobalValue(Spotify, 'clientSECRET',
+ registry.string('', """ Sets the ClientSECRET obtainable from https://developer.spotify.com/""", private=True))
# vim:set shiftwidth=4 tabstop=4 expandtab textwidth=79: