This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
clear | |
echo "Syncing Api Server from GIT" | |
printf "\n\n---------------------------" | |
printf "\n\nSitching to user forge" | |
sudo su forge | |
printf "\n\nCurrent User: " | |
whoami |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$scope.addFieldset = function(fieldset){ | |
// alert('afs'); | |
// console.log($scope.schema.sections[0].fieldset); | |
var count=0; | |
var sco_sch= {}; | |
angular.forEach($scope.schema.fields, function(value, key) { | |
if(value.fieldIsUserInput){ | |
sco_sch[value.fieldId]=value.fieldDefault; |
NewerOlder