Loading profiles from all sources, in preparation for merge.

This commit is contained in:
Brendon Duncan 2018-06-04 09:47:02 +12:00
commit 4109d4743f
2 changed files with 89 additions and 3 deletions

View file

@ -62,6 +62,13 @@ Profile.prototype.isDeviceChecked = function(ua) {
return this.checkedUA == ua;
};
/**
*
* @param {Profile} other
*/
Profile.prototype.merge = function(other) {
throw 'Profile merge not implemented.';
};
Profile.prototype.setChecked = function(ua, walletId) {
if (this.checkedUA != ua) {