mirror of
https://github.com/ansible/awx.git
synced 2026-05-11 11:27:36 -02:30
Code cleanup
removing commented out code, and fixing management jobs and inventory scripts for passing objects to states
This commit is contained in:
@@ -310,12 +310,10 @@ export function InventoriesList($scope, $rootScope, $location, $log,
|
|||||||
};
|
};
|
||||||
|
|
||||||
$scope.addInventory = function () {
|
$scope.addInventory = function () {
|
||||||
// $location.path($location.path() + '/add');
|
|
||||||
$state.go('inventories.add');
|
$state.go('inventories.add');
|
||||||
};
|
};
|
||||||
|
|
||||||
$scope.editInventory = function (id) {
|
$scope.editInventory = function (id) {
|
||||||
// $location.path($location.path() + '/' + id);
|
|
||||||
$state.go('inventories.edit', {inventory_id: id});
|
$state.go('inventories.edit', {inventory_id: id});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -8,9 +8,10 @@ import {templateUrl} from '../../shared/template-url/template-url.factory';
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'inventoryScriptsEdit',
|
name: 'inventoryScriptsEdit',
|
||||||
route: '/inventory_scripts/:inventory_script',
|
route: '/inventory_scripts/:inventory_script_id',
|
||||||
templateUrl: templateUrl('inventory-scripts/edit/edit'),
|
templateUrl: templateUrl('inventory-scripts/edit/edit'),
|
||||||
controller: 'inventoryScriptsEditController',
|
controller: 'inventoryScriptsEditController',
|
||||||
|
params: {inventory_script: null},
|
||||||
resolve: {
|
resolve: {
|
||||||
features: ['FeaturesService', function(FeaturesService) {
|
features: ['FeaturesService', function(FeaturesService) {
|
||||||
return FeaturesService.get();
|
return FeaturesService.get();
|
||||||
@@ -23,12 +24,11 @@ export default {
|
|||||||
'GetBasePath',
|
'GetBasePath',
|
||||||
'ProcessErrors',
|
'ProcessErrors',
|
||||||
function($state, $stateParams, $q, rest, getBasePath, ProcessErrors) {
|
function($state, $stateParams, $q, rest, getBasePath, ProcessErrors) {
|
||||||
// if ($stateParams.inventory_script) {
|
if ($stateParams.inventory_script) {
|
||||||
// $stateParams.inventory_script = JSON.parse($stateParams.inventory_script);
|
return $q.when($stateParams.inventory_script);
|
||||||
// return $q.when($stateParams.inventory_script);
|
}
|
||||||
// }
|
|
||||||
|
|
||||||
var inventoryScriptId = $stateParams.inventory_script;
|
var inventoryScriptId = $stateParams.inventory_script_id;
|
||||||
|
|
||||||
var url = getBasePath('inventory_scripts') + inventoryScriptId + '/';
|
var url = getBasePath('inventory_scripts') + inventoryScriptId + '/';
|
||||||
rest.setUrl(url);
|
rest.setUrl(url);
|
||||||
|
|||||||
@@ -38,9 +38,9 @@ export default
|
|||||||
scope.search(list.iterator);
|
scope.search(list.iterator);
|
||||||
|
|
||||||
scope.editCustomInv = function(){
|
scope.editCustomInv = function(){
|
||||||
// this.inventory_script = JSON.stringify(this.inventory_script);
|
$state.transitionTo('inventoryScriptsEdit',{
|
||||||
$state.go('inventoryScriptsEdit',{
|
inventory_script_id: this.inventory_script.id,
|
||||||
inventory_script: this.inventory_script.id
|
inventory_script: this.inventory_script
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -8,9 +8,10 @@ import {templateUrl} from '../../shared/template-url/template-url.factory';
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'managementJobsSchedule',
|
name: 'managementJobsSchedule',
|
||||||
route: '/management_jobs/:management_job/schedules',
|
route: '/management_jobs/:management_job_id/schedules',
|
||||||
templateUrl: templateUrl('management-jobs/schedule/schedule'),
|
templateUrl: templateUrl('management-jobs/schedule/schedule'),
|
||||||
controller: 'managementJobsScheduleController',
|
controller: 'managementJobsScheduleController',
|
||||||
|
params: {management_job: null},
|
||||||
resolve: {
|
resolve: {
|
||||||
features: ['FeaturesService', function(FeaturesService) {
|
features: ['FeaturesService', function(FeaturesService) {
|
||||||
return FeaturesService.get();
|
return FeaturesService.get();
|
||||||
@@ -22,11 +23,11 @@ export default {
|
|||||||
'GetBasePath',
|
'GetBasePath',
|
||||||
'ProcessErrors',
|
'ProcessErrors',
|
||||||
function($stateParams, $q, rest, getBasePath, ProcessErrors) {
|
function($stateParams, $q, rest, getBasePath, ProcessErrors) {
|
||||||
// if ($route.current.hasModelKey('management_job')) {
|
if ($stateParams.management_job) {
|
||||||
// return $q.when($route.current.params.model.management_job);
|
return $q.when($stateParams.management_job);
|
||||||
// }
|
}
|
||||||
|
|
||||||
var managementJobId = $stateParams.management_job;
|
var managementJobId = $stateParams.management_job_id;
|
||||||
|
|
||||||
var url = getBasePath('system_job_templates') + managementJobId + '/';
|
var url = getBasePath('system_job_templates') + managementJobId + '/';
|
||||||
rest.setUrl(url);
|
rest.setUrl(url);
|
||||||
|
|||||||
Reference in New Issue
Block a user