First integration. BitPay invoice generation is ready. Fake responses from amazon
This commit is contained in:
parent
2c442d3642
commit
2c89ff7f66
17 changed files with 734 additions and 2 deletions
|
|
@ -317,6 +317,18 @@ angular.module('copayApp.services')
|
|||
});
|
||||
});
|
||||
};
|
||||
|
||||
root.setAmazonGiftCards = function(network, gcs, cb) {
|
||||
storage.set('amazonGiftCards-' + network, gcs, cb);
|
||||
};
|
||||
|
||||
root.getAmazonGiftCards = function(network, cb) {
|
||||
storage.get('amazonGiftCards-' + network, cb);
|
||||
};
|
||||
|
||||
root.removeAmazonGiftCards = function(network, cb) {
|
||||
storage.remove('amazonGiftCards-' + network, cb);
|
||||
};
|
||||
|
||||
return root;
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue