view logs in UX
This commit is contained in:
parent
6723cba56a
commit
f47d6b0564
16 changed files with 188 additions and 47 deletions
|
|
@ -111,5 +111,17 @@ angular.module('copayApp.services')
|
|||
storage.get('backup-' + walletId, cb);
|
||||
};
|
||||
|
||||
root.getConfig = function(cb) {
|
||||
storage.get('config', cb);
|
||||
};
|
||||
|
||||
root.storeConfig = function(val, cb) {
|
||||
storage.set('config', val, cb);
|
||||
};
|
||||
|
||||
root.clearConfig = function(cb) {
|
||||
storage.remove('config', cb);
|
||||
};
|
||||
|
||||
return root;
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue