Skip to content

Commit

Permalink
feat(spel): add #propertiesFromUrl to autocomplete
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaslin committed Mar 16, 2017
1 parent 127d747 commit 9a98683
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module.exports = angular
.factory('spelAutocomplete', function($q, jsonListBuilder, executionService) {
let brackets = [{open: '(', close: ')'}, {open: '[', close: ']'}, ];
let quotes = [{open: '\'', close: '\'' }, {open: '\"', close: '\"' }];
let helperFunctions = ['alphanumerical', 'readJson', 'fromUrl', 'jsonFromUrl', 'judgment', 'stage', 'toBoolean', 'toFloat', 'toInt', 'toJson'];
let helperFunctions = ['alphanumerical', 'readJson', 'fromUrl', 'propertiesFromUrl', 'jsonFromUrl', 'judgment', 'stage', 'toBoolean', 'toFloat', 'toInt', 'toJson'];
let helperParams = ['execution', 'parameters', 'trigger', 'scmInfo', 'scmInfo.sha1', 'scmInfo.branch', 'deployedServerGroups'];
let codedHelperParams = helperParams.map((param) => {
return {name: param, type: 'param'};
Expand Down

0 comments on commit 9a98683

Please sign in to comment.