Backup & Restore containers configuration

https://github.com/mozilla/multi-account-containers/pull/1533/files
This commit is contained in:
BPower0036 2022-05-18 05:05:12 +00:00 committed by GitHub
parent d05bcddd22
commit adba81f516
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -78,6 +78,12 @@ const messageHandler = {
windowId: m.windowId
});
break;
case "backupIdentitiesState":
response = backgroundLogic.backupIdentitiesState();
break;
case "restoreIdentitiesState":
response = backgroundLogic.restoreIdentitiesState(m.identities);
break;
case "queryIdentitiesState":
response = backgroundLogic.queryIdentitiesState(m.message.windowId);
break;