set 24 hours timer
This commit is contained in:
parent
80888f63a1
commit
ac9cee8d6d
5 changed files with 22 additions and 7 deletions
|
|
@ -138,6 +138,14 @@ angular.module('copayApp.services')
|
|||
storage.remove('profile', cb);
|
||||
};
|
||||
|
||||
root.setProfileCreationTime = function(time, cb) {
|
||||
storage.set('profileCreationTime', time, cb);
|
||||
};
|
||||
|
||||
root.getProfileCreationTime = function(cb) {
|
||||
storage.get('profileCreationTime', cb);
|
||||
};
|
||||
|
||||
root.storeFocusedWalletId = function(id, cb) {
|
||||
storage.set('focusedWalletId', id || '', cb);
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue