Importing a profile also logs in

This commit is contained in:
Matias Pando 2014-11-13 12:55:45 -03:00
parent bbe2b37911
commit 0abb264fa6
2 changed files with 11 additions and 4 deletions

View File

@ -1,7 +1,7 @@
'use strict';
angular.module('copayApp.controllers').controller('ImportProfileController',
function($scope, $rootScope, $location, controllerUtils, notification, isMobile, pluginManager) {
function($scope, $rootScope, $location, controllerUtils, notification, isMobile, pluginManager, identityService) {
controllerUtils.redirIfLogged();
$scope.title = 'Import a backup';
@ -30,8 +30,16 @@ angular.module('copayApp.controllers').controller('ImportProfileController',
if (err && !iden) {
$scope.error = (err.toString() || '').match('BADSTR') ? 'Bad password or corrupt profile file' : 'Unknown error';
} else {
notification.info('Success', 'Profile imported successfully');
$location.path('/');
//simulate an angular form
var data = {
email: {
$modelValue: iden.email
},
password: {
$modelValue: iden.password
}
}
identityService.open($scope, data);
}
});
};

View File

@ -43,7 +43,6 @@ angular.module('copayApp.services')
$timeout(function() {
$rootScope.$digest()
}, 1);
return;
}
var walletOptions = {