Skip to content
This repository has been archived by the owner on Oct 8, 2019. It is now read-only.

Commit

Permalink
feat(Invite): remove country whitelist for this release
Browse files Browse the repository at this point in the history
  • Loading branch information
Sjors committed Aug 30, 2016
1 parent 22c053e commit 97b2f89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/js/controllers/walletNavigation.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function WalletNavigationCtrl ($rootScope, $scope, Wallet, MyWallet, Alerts, Sec
$scope.settings = Wallet.settings;
$scope.security = SecurityCenter.security;
$scope.isUserInvited = MyWallet.wallet.accountInfo.invited;
$scope.isUserWhitelisted = ['GB', 'DK'].indexOf(MyWallet.wallet.accountInfo.countryCodeGuess) > -1;
$scope.isUserWhitelisted = [].indexOf(MyWallet.wallet.accountInfo.countryCodeGuess) > -1;
// debug uninvited user and whitelisted
// $scope.isUserInvited = false;
// $scope.isUserWhitelisted = true;
Expand Down

0 comments on commit 97b2f89

Please sign in to comment.