Add resource constrait view on app installation attempt

This commit is contained in:
Johannes Zellner
2015-10-22 10:40:33 +02:00
parent 6103640b53
commit d11e030150
3 changed files with 22 additions and 6 deletions

View File

@@ -638,6 +638,10 @@ angular.module('Application').service('Client', ['$http', 'md5', 'Notification',
}).error(defaultErrorHandler(callback));
};
Client.prototype.enoughResourcesAvailable = function (app) {
return true;
};
client = new Client();
return client;
}]);