Merge pull request #745 from kvch/version-info-in-config

add version info to config endpoint
This commit is contained in:
Adam Tauber 2016-10-30 21:05:22 +01:00 committed by GitHub
commit b30bc5eeeb
1 changed files with 2 additions and 1 deletions

View File

@ -743,7 +743,8 @@ def config():
'default_locale': settings['ui']['default_locale'],
'autocomplete': settings['search']['autocomplete'],
'safe_search': settings['search']['safe_search'],
'default_theme': settings['ui']['default_theme']})
'default_theme': settings['ui']['default_theme'],
'version': VERSION_STRING})
@app.errorhandler(404)