We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb93b18 commit 893ab18Copy full SHA for 893ab18
lib/server-code/runners/tasks/parse-service.js
@@ -28,10 +28,14 @@ function parseService(task) {
28
29
return argsUtil.encode(model.services.values().map(service => {
30
return {
31
+ //TODO: temporary commented due to server unpreparedness
32
// name : service.name,
33
// version : service.version,
34
// description : service.description,
- config: service.configItems,
35
+ config: service.configItems.map(item => Object.assign({
36
+ //TODO: server bug workaround
37
+ ___jsonclass: 'com.backendless.marketplace.model.BlConfigurationItemDescription'
38
+ }, item)),
39
xml : service.xml()
40
};
41
}));
0 commit comments