create profile working!
This commit is contained in:
parent
74129a6923
commit
7a2906c8d1
12 changed files with 139 additions and 43 deletions
24
js/controllers/createProfile.js
Normal file
24
js/controllers/createProfile.js
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
'use strict';
|
||||
|
||||
angular.module('copayApp.controllers').controller('CreateProfileController', function($scope, $rootScope, $location, notification, controllerUtils, pluginManager) {
|
||||
controllerUtils.redirIfLogged();
|
||||
|
||||
$scope.createProfile = function(form) {
|
||||
|
||||
$scope.loading = true;
|
||||
copay.Identity.create(form.email.$modelValue, form.password.$modelValue, {
|
||||
pluginManager: pluginManager,
|
||||
network: config.network,
|
||||
networkName: config.networkName,
|
||||
walletDefaults: config.wallet,
|
||||
passphrase: config.passphrase,
|
||||
}, function(err, iden ,w) {
|
||||
$scope.loading = false;
|
||||
$rootScope.iden = iden;
|
||||
$rootScope.wallet = w;
|
||||
|
||||
controllerUtils.bindWallet(w, $scope);
|
||||
});
|
||||
}
|
||||
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue