|
|
@@ -15,7 +15,12 @@ function (angular) {
|
|
|
};
|
|
|
|
|
|
$scope.getAccountInfo = function() {
|
|
|
+ $http.get('/api/account').then(function(result) {
|
|
|
+ $scope.account = result.data;
|
|
|
+ console.log("value", result.data);
|
|
|
+ }, function(err) {
|
|
|
|
|
|
+ });
|
|
|
};
|
|
|
|
|
|
$scope.addCollaborator = function() {
|
|
|
@@ -35,5 +40,7 @@ function (angular) {
|
|
|
});
|
|
|
};
|
|
|
|
|
|
+ $scope.init();
|
|
|
+
|
|
|
});
|
|
|
});
|