mirror of
https://github.com/ansible/awx.git
synced 2026-01-21 06:28:01 -03:30
28 lines
904 B
JavaScript
28 lines
904 B
JavaScript
export default
|
|
[ '$scope',
|
|
'$rootScope',
|
|
'AboutAnsibleHelp',
|
|
'ConfigureTower',
|
|
'CreateCustomInventory',
|
|
function(
|
|
$scope,
|
|
$rootScope,
|
|
showAboutModal,
|
|
configureTower,
|
|
showInventoryScriptsModal
|
|
) {
|
|
$scope.showAboutModal = showAboutModal;
|
|
|
|
$scope.showManagementJobsModal =
|
|
configureTower.bind(null,
|
|
{ scope: $rootScope,
|
|
parent_scope: $rootScope
|
|
});
|
|
|
|
$scope.showInventoryScriptsModal = showInventoryScriptsModal.bind(null,
|
|
{ parent_scope: $rootScope
|
|
});
|
|
|
|
}
|
|
];
|