When there are multiple separate databases being served from the same Trytond server we normally select the database we want to connect from the login dialog of the web client. However this leaks information about the existence of the many databases available to anyone using the web client.
One way to solve this problem is to disable the database listing by adding list = False
in the server config. However this brings an inconvenience to the user that he/she needs to type in the database name in the login dialog field every time. So I was wondering if there is a way one can specify or “pre-select” the database to connect by adding this as a parameter in the URL loading the web-client?
I tried something like http://localhost:8080/#demo70
or http://localhost:8080/?database=demo70
and both still requires user type in the database name. If this is not implemented yet, I wonder if this is a feature we could add to the SAO client?