Country/Locale now settable via config (fixes #19); New get_config endpoint for Pusher

This commit is contained in:
James Barnsley
2017-02-06 10:07:32 +13:00
parent f3a409b356
commit 94c947e90e
10 changed files with 53 additions and 17 deletions

View File

@ -189,6 +189,16 @@ class IrisFrontend(pykka.ThreadingActor, CoreListener):
def get_spotify_token( self ):
return self.spotify_token
# get our config values
def get_config( self ):
iris = self.config['iris']
config = {
"country": iris['country'],
"locale": iris['locale']
}
return config
##
# Get Spotmop version, and check for updates