Merge pull request #1598 from cmgustavo/feature/identity-compat01

Display a message for users whose have wallet:: but not profile::
This commit is contained in:
Matias Alejo Garcia 2014-10-30 10:00:32 -03:00
commit 02ab30610f
7 changed files with 94 additions and 8 deletions

View file

@ -2,7 +2,9 @@
angular.module('copayApp.controllers').controller('CreateProfileController', function($scope, $rootScope, $location, notification, controllerUtils, pluginManager, identityService) {
controllerUtils.redirIfLogged();
$scope.retreiving = false;
$scope.retreiving = true;
identityService.check($scope);
$scope.createProfile = function(form) {
if (form && form.$invalid) {

View file

@ -2,7 +2,9 @@
angular.module('copayApp.controllers').controller('HomeController', function($scope, $rootScope, $location, notification, controllerUtils, pluginManager, identityService) {
controllerUtils.redirIfLogged();
$scope.retreiving = false;
$scope.retreiving = true;
identityService.check($scope);
$scope.openProfile = function(form) {
if (form && form.$invalid) {