Glidera Integration
This commit is contained in:
parent
326c699286
commit
4ed39a22d4
8 changed files with 314 additions and 0 deletions
|
|
@ -192,5 +192,17 @@ angular.module('copayApp.services')
|
|||
storage.get('remotePrefStored', cb);
|
||||
};
|
||||
|
||||
root.setGlideraToken = function(network, token, cb) {
|
||||
storage.set('glideraToken-' + network, token, cb);
|
||||
};
|
||||
|
||||
root.getGlideraToken = function(network, cb) {
|
||||
storage.get('glideraToken-' + network, cb);
|
||||
};
|
||||
|
||||
root.removeGlideraToken = function(network, cb) {
|
||||
storage.remove('glideraToken-' + network, cb);
|
||||
};
|
||||
|
||||
return root;
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue