1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-13 20:08:55 +00:00

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()