Please enable JavaScript.
Coggle requires JavaScript to display documents.
Avaya (Service (Create a service that gets the data for both reports and…
Avaya
Service
-
-
Is this going to be hardcoded to return Avaya views or take the table\view needed from the front end request?
I added the pg package to the database services' package,json file. Is this correct?
"pg": "^7.11.0"
I'm using POST to send body{} data to get sampleData (Top 10 rows). Is it ok to use POST for this when I'm not updating anything on the server side?
Todo:
-
Database service
Think we need a service that let's users select:
- database connection
- select statement (or table\view)
- add calculated fields
That way we don't need to worry about users having to change the source database
The resultant dataset should be available to them to create reports\dashboards
-
Need to change calls to hypercentral_module_service.connector_data to pass in record ID when known. Up until now there has only been one record per connector type per tenant (i.e. one Salesforce connection) now we can have multiple database connections per tenant.
change SP post_connector_data to set hypercentral_module_service.connector_data.active to true and to accept connector_data.id parameter
-
-
-
-
Change controller method getActiveConnector() to look for new hypercentral_module_service.connector_data.active field
-
create new SP deactivate_connector to set hypercentral_module_service.connector_data.active to false
Dashboard
Get metadata of view using where name like 'view_hypercentral*'
SELECT * FROM information_schema.columns where table_name like 'statistics%';
Plan to use this data to allow users to build their dashboards
and reports. This will be passed back to Angular from our service
build script questions
-
-
Got an error: create.sh: line 54: cd: ../_scripts: No such file or directory
should I be calling the folder "_scripts"?
-
-
-