Sha256: d8833b709693ea14fa65983125a586512d225f5d70e9a52d7899a8415740dd0a
Contents?: true
Size: 921 Bytes
Versions: 65
Compression:
Stored size: 921 Bytes
Contents
/** * @ngdoc object * @name Bastion.content-hosts.controller:ContentHostPackagesActionsController * * @requires $scope * @requires $location * @requires BastionConfig * * @description * Provides the functionality for the content host package actions. */ angular.module('Bastion.content-hosts').controller('ContentHostPackagesActionsController', ['$scope', '$location', 'BastionConfig', function ($scope, $location, BastionConfig) { var packageName = $location.search().package_name; $scope.katelloAgentPresent = BastionConfig.katelloAgentPresent; $scope.remoteExecutionPresent = BastionConfig.remoteExecutionPresent; $scope.hostToolingEnabled = BastionConfig.hostToolingEnabled; $scope.packageAction = {actionType: 'packageInstall'}; //default to packageInstall if (packageName) { $scope.packageAction.term = packageName; } } ]);
Version data entries
65 entries across 65 versions & 1 rubygems