Remove from end user
Removed max connections from the end user view.
This commit is contained in:
parent
e3303f7a60
commit
56a0989176
2 changed files with 0 additions and 9 deletions
|
@ -6,7 +6,6 @@ export interface ServerDatabase {
|
|||
username: string;
|
||||
connectionString: string;
|
||||
allowConnectionsFrom: string;
|
||||
maxConnections: string;
|
||||
password?: string;
|
||||
}
|
||||
|
||||
|
@ -16,7 +15,6 @@ export const rawDataToServerDatabase = (data: any): ServerDatabase => ({
|
|||
username: data.username,
|
||||
connectionString: `${data.host.address}:${data.host.port}`,
|
||||
allowConnectionsFrom: data.connections_from,
|
||||
maxConnections: data.max_connections,
|
||||
password: data.relationships && data.relationships.password ? data.relationships.password.attributes.password : undefined,
|
||||
});
|
||||
|
||||
|
|
Reference in a new issue