Add variable to API endpoint
Allow API to retrun max_connections for frontend database page
This commit is contained in:
parent
f0e4764a11
commit
0ecfb40f5e
3 changed files with 4 additions and 1 deletions
|
@ -6,6 +6,7 @@ export interface ServerDatabase {
|
|||
username: string;
|
||||
connectionString: string;
|
||||
allowConnectionsFrom: string;
|
||||
maxConnections: string;
|
||||
password?: string;
|
||||
}
|
||||
|
||||
|
@ -15,6 +16,7 @@ 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,
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue