Turn on / off authentication

This commit is contained in:
Julien Duponchelle 2015-06-10 23:14:18 +02:00
parent 079715bc18
commit a2833cf276

View File

@ -90,6 +90,9 @@ class Route(object):
:returns: Response if you need to auth the user otherwise None
"""
if not server_config.getboolean("auth", False):
return
user = server_config.get("user", "").strip()
password = server_config.get("password", "").strip()