Unconfirmed accounts

This commit is contained in:
Gustavo Maximiliano Cortez 2015-09-08 12:04:27 -03:00
commit 07bf7b8f97
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
6 changed files with 54 additions and 22 deletions

View file

@ -4,7 +4,7 @@ angular.module('copayApp.services').factory('glideraService', function($http, $l
var root = {};
var credentials = {};
root.init = function(network) {
root.setCredentials = function(network) {
if (network == 'testnet') {
credentials.HOST = 'https://sandbox.glidera.io';
credentials.REDIRECT_URI = 'urn:ietf:wg:oauth:2.0:oob';
@ -17,7 +17,6 @@ angular.module('copayApp.services').factory('glideraService', function($http, $l
credentials.CLIENT_ID = '';
credentials.CLIENT_SECRET = '';
};
return credentials;
};
root.getOauthCodeUrl = function() {