Sha256: 89f8e1cecf8ee67f52f04626526c6e8388ae8c122fed0ddaf8490a5f44aea905
Contents?: true
Size: 541 Bytes
Versions: 96
Compression:
Stored size: 541 Bytes
Contents
/** * @ngdoc object * @name Bastion.subscriptions.controller:ManifestHistoryController * * @requires $scope * * @description * Controls the import of a manifest. */ angular.module('Bastion.subscriptions').controller('ManifestHistoryController', ['$scope', 'Subscription', function ($scope, Subscription) { $scope.histories = Subscription.manifestHistory(); $scope.histories.$promise.then(function (result) { $scope.statuses = result; $scope.panel.loading = false; }); }] );
Version data entries
96 entries across 96 versions & 1 rubygems