28 lines
943 B
JavaScript
28 lines
943 B
JavaScript
'use strict';
|
|
|
|
angular.module('copayApp.controllers').controller('HomeController', function($scope, $rootScope, $location, notification, controllerUtils, pluginManager) {
|
|
|
|
controllerUtils.redirIfLogged();
|
|
|
|
$scope.openProfile = function(form) {
|
|
$scope.loading = true;
|
|
copay.Identity.open(form.email.$modelValue, form.password.$modelValue, {
|
|
pluginManager: pluginManager,
|
|
network: config.network,
|
|
networkName: config.networkName,
|
|
walletDefaults: config.wallet,
|
|
passphrase: config.passphrase,
|
|
}, function(err, iden, w) {
|
|
if (err && !w) {
|
|
console.log('Error:' + err)
|
|
controllerUtils.onErrorDigest(
|
|
$scope, (err.toString()||'').match('PNOTFOUND') ? 'Profile not found' : 'Unknown error');
|
|
} else {
|
|
$scope.loading = false;
|
|
$rootScope.iden = iden;
|
|
$rootScope.wallet = w;
|
|
controllerUtils.bindWallet(w, $scope);
|
|
}
|
|
});
|
|
}
|
|
});
|