1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-02 09:51:09 +03:00

Removed update interval field grom Group form.

This commit is contained in:
Chris Houseknecht 2013-11-20 09:13:59 +00:00
parent 5b6eba7f93
commit a9c9cc8f03
2 changed files with 4 additions and 4 deletions

View File

@ -159,7 +159,7 @@ angular.module('GroupFormDefinition', [])
'<p>View YAML examples at <a href="http://www.ansibleworks.com/docs/YAMLSyntax.html" target="_blank">ansibleworks.com</a></p>',
dataContainer: 'body'
},
update_interval: {
/*update_interval: {
label: 'Update Interval',
type: 'select',
ngOptions: 'interval.label for interval in update_interval_options',
@ -173,7 +173,7 @@ angular.module('GroupFormDefinition', [])
"the last run.</p><p>With a value set, task manager will periodically compare the amount of elapsed time from the last run. If enough time " +
"has elapsed, it will go ahead and start an inventory update process.</p>",
dataContainer: 'body'
},
},*/
checkbox_group: {
label: 'Update Options',
type: 'checkbox_group',

View File

@ -896,8 +896,8 @@ angular.module('GroupsHelper', [ 'RestServices', 'Utilities', 'ListGenerator', '
source_regions: scope['source_regions'],
overwrite: scope['overwrite'],
overwrite_vars: scope['overwrite_vars'],
update_on_launch: scope['update_on_launch'],
update_interval: scope['update_interval'].value
update_on_launch: scope['update_on_launch']
//update_interval: scope['update_interval'].value
};
if (scope['source'].value == 'ec2') {