Sha256: ea73fe0b71d1797d7d06a8bed6ec89bfc3d16eaafccd60a02264ae2112afb675
Contents?: true
Size: 605 Bytes
Versions: 23
Compression:
Stored size: 605 Bytes
Contents
/** * @ngdoc object * @name Bastion.content-hosts.controller:ContentHostDebsActionsController * * @requires $scope * @requires translate * * @description * Provides the functionality for the content host deb package actions. */ angular.module('Bastion.content-hosts').controller('ContentHostDebsActionsController', ['$scope', 'translate', function ($scope, translate) { // Labels so breadcrumb strings can be translated $scope.label = translate('Deb Package Actions'); $scope.packageAction = {actionType: 'packageInstall'}; // default to packageInstall } ]);
Version data entries
23 entries across 23 versions & 1 rubygems