summaryrefslogtreecommitdiffstats
path: root/config.py
diff options
context:
space:
mode:
authorPratyush Desai2021-08-03 03:41:47 +0530
committerPratyush Desai2021-08-03 03:41:47 +0530
commita72c46ea64fc83478831cbf27ce16885c87f813d (patch)
treee5c6d93dbbf704a3966121cf53b901ba12dd9072 /config.py
parenta04d10e8fe285d443439ae81c305a92250e28176 (diff)
downloadspotify-a72c46ea64fc83478831cbf27ce16885c87f813d.tar.gz
spotify-a72c46ea64fc83478831cbf27ce16885c87f813d.tar.bz2
spotify-a72c46ea64fc83478831cbf27ce16885c87f813d.zip
parity with old code base
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: