Add ability to download logs

This commit is contained in:
Joseph Schorr 2013-12-06 15:59:59 -05:00
parent 52bee66c9f
commit 59046b2e79
5 changed files with 14 additions and 6 deletions

View file

@ -686,6 +686,7 @@ quayApp.directive('logsView', function () {
$scope.logs = null;
$scope.kindsAllowed = null;
$scope.chartVisible = true;
$scope.logsPath = '';
var logDescriptions = {
'account_change_plan': 'Change plan',
@ -781,9 +782,11 @@ quayApp.directive('logsView', function () {
if ($scope.repository) {
url = getRestUrl('repository', $scope.repository.namespace, $scope.repository.name, 'logs');
}
var loadLogs = Restangular.one(url);
loadLogs.customGET().then(function(resp) {
$scope.logsPath = '/api/' + url;
if (!$scope.chart) {
$scope.chart = new LogUsageChart(logKinds);
$($scope.chart).bind('filteringChanged', function(e) {