* Changin public_url & public_ws_url to shorter url & wsurl respectively

There's also some miscellaneous changes  that don't fit anywhere in this patch (mostly dev qol of roadmap updates)
This commit is contained in:
shockrah
2021-05-09 23:08:55 -07:00
parent efac097645
commit a79195076d
4 changed files with 8 additions and 5 deletions

View File

@@ -37,7 +37,7 @@ class Admin:
'secret': self.secret,
'jwt': self.jwt,
}
container = {'user': acc, 'server': str(server)}
container = {'user': acc, 'server': str(self.server)}
return str(container)
def create_admin() -> Admin :
@@ -57,6 +57,6 @@ def create_admin() -> Admin :
else:
return Admin(user, server)
except Exception as e:
print(f'General exception caught in parsing => {e}', file=sys.stderr)
print(f'[create_admin] General exception caught in parsing => {e}', file=sys.stderr)
return None