side bar and ui node list fixes
This commit is contained in:
parent
cf669024bf
commit
895b4fe4fd
4 changed files with 15 additions and 8 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue