side bar and ui node list fixes

This commit is contained in:
Kevin Froman 2020-10-15 23:24:25 +00:00
parent cf669024bf
commit 895b4fe4fd
4 changed files with 15 additions and 8 deletions

View file

@ -53,7 +53,10 @@ class PrivateEndpoints:
if result == "success":
return Response("success")
else:
return Response(result, 409)
if "already" in result:
return Response(result, 409)
else:
return Response(result, 400)
@private_endpoints_bp.route('/www/<path:path>', endpoint='www')
def wwwPublic(path):