mirror of
https://github.com/ansible/awx.git
synced 2024-11-02 18:21:12 +03:00
Url parameter to Utilities.GetChoices to allow adding parameters to options query.
This commit is contained in:
parent
a5bb145f70
commit
41b5d8b9ad
@ -249,19 +249,13 @@ function ProjectsAdd ($scope, $rootScope, $compile, $location, $log, $routeParam
|
|||||||
LoadBreadCrumbs();
|
LoadBreadCrumbs();
|
||||||
GetProjectPath({ scope: scope, master: master });
|
GetProjectPath({ scope: scope, master: master });
|
||||||
|
|
||||||
//scope.scm_type = null;
|
|
||||||
//master.scm_type = null;
|
|
||||||
|
|
||||||
if (scope.removeChoicesReady) {
|
if (scope.removeChoicesReady) {
|
||||||
scope.removeChoicesReady();
|
scope.removeChoicesReady();
|
||||||
}
|
}
|
||||||
scope.removeChoicesReady = scope.$on('choicesReady', function() {
|
scope.removeChoicesReady = scope.$on('choicesReady', function() {
|
||||||
console.log('setting type');
|
|
||||||
var found = false;
|
|
||||||
for (var i=0; i < scope.scm_type_options.length; i++) {
|
for (var i=0; i < scope.scm_type_options.length; i++) {
|
||||||
if (scope.scm_type_options[i].value == '') {
|
if (scope.scm_type_options[i].value == '') {
|
||||||
scope['scm_type'] = scope.scm_type_options[i];
|
scope['scm_type'] = scope.scm_type_options[i];
|
||||||
found = true;
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -25,8 +25,10 @@ angular.module('GroupsHelper', [ 'RestServices', 'Utilities', 'ListGenerator', '
|
|||||||
.success( function(data, status, headers, config) {
|
.success( function(data, status, headers, config) {
|
||||||
var choices = data.actions.GET.source.choices
|
var choices = data.actions.GET.source.choices
|
||||||
for (var i=0; i < choices.length; i++) {
|
for (var i=0; i < choices.length; i++) {
|
||||||
|
if (choices[i][0] !== 'file') {
|
||||||
scope[variable].push({ label: [ (choices[i][0] == "") ? 'Manual' : choices[i][1] ], value: choices[i][0] });
|
scope[variable].push({ label: [ (choices[i][0] == "") ? 'Manual' : choices[i][1] ], value: choices[i][0] });
|
||||||
}
|
}
|
||||||
|
}
|
||||||
})
|
})
|
||||||
.error( function(data, status, headers, config) {
|
.error( function(data, status, headers, config) {
|
||||||
ProcessErrors(scope, data, status, null,
|
ProcessErrors(scope, data, status, null,
|
||||||
|
Loading…
Reference in New Issue
Block a user