diff --git a/webadmin/src/views/appstore.js b/webadmin/src/views/appstore.js index 6291a2c87..421594e17 100644 --- a/webadmin/src/views/appstore.js +++ b/webadmin/src/views/appstore.js @@ -359,17 +359,19 @@ angular.module('Application').controller('AppStoreController', ['$scope', '$loca if (!app.manifest.tags) app.manifest.tags = []; }); - Client.getNonApprovedApps(function (error, result) { - if (error) return callback(error); + return callback(null, apps); - // add testing tag to the manifest for UI and search reasons - result.forEach(function (app) { - if (!app.manifest.tags) app.manifest.tags = []; - app.manifest.tags.push('testing'); - }); + // Client.getNonApprovedApps(function (error, result) { + // if (error) return callback(error); - callback(null, apps.concat(result)); - }); + // // add testing tag to the manifest for UI and search reasons + // result.forEach(function (app) { + // if (!app.manifest.tags) app.manifest.tags = []; + // app.manifest.tags.push('testing'); + // }); + + // callback(null, apps.concat(result)); + // }); }); }