Add Client.getApp that uses REST API

This commit is contained in:
Girish Ramakrishnan
2018-06-25 18:55:07 -07:00
parent a77918bef9
commit 091663afe0
3 changed files with 13 additions and 6 deletions

View File

@@ -72,7 +72,7 @@ app.controller('LogsController', ['$scope', '$timeout', '$location', 'Client', f
var appId = $scope.selected.value;
Client.getApp(appId, function (error, result) {
Client.getCachedApp(appId, function (error, result) {
if (error) return console.error(error);
$scope.selectedAppInfo = result;