Sha256: 95386b90726a650ac342fcc36400c6ce18de1b44a19db631f2a818f5dd125a48
Contents?: true
Size: 849 Bytes
Versions: 30
Compression:
Stored size: 849 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.remoteExecutionPresent = BastionConfig.remoteExecutionPresent; $scope.hostToolingEnabled = BastionConfig.hostToolingEnabled; $scope.packageAction = {actionType: 'packageInstall'}; //default to packageInstall if (packageName) { $scope.packageAction.term = packageName; } } ]);
Version data entries
30 entries across 30 versions & 1 rubygems