-
Type:
Task
-
Resolution: Fixed
-
Priority:
L3 - Default
-
Affects Version/s: None
-
S
When currently retrieving the import status, we get a response like this:
{
"connectionStatus": {
"engineConnections": {
"marketingEngine": true,
"salesEngine" : false
},
"connectedToElasticsearch": true
},
"isImporting": {
"marketingEngine": true,
"salesEngine" : false
}
}
So we are listing the engines twice, which is a bit redundant. Therefore, we should merge the connection and import status of the engine into somehting like this:
{
"engineStatus": {
"marketingEngine":{
isConnected: true,
isImporting: true
},
"salesEngine" : {
isConnected: false,
isImporting: false
}
},
"connectedToElasticsearch": true
}
ATs:
- The response does not duplicate the engines as part of both the connection and importing properties
- The REST-API documentation is updated
This is the controller panel for Smart Panels app
- is related to
-
OPT-1196 Footer reports only import status instead of import progress
-
- Done
-