({data})
| 40 | } |
| 41 | |
| 42 | onArmoredKey({data}) { |
| 43 | const slotId = getUUID(); |
| 44 | this.keyringId = getActiveKeyringId(); |
| 45 | setAppDataSlot(slotId, data); |
| 46 | mvelo.tabs.loadAppTab(`?krid=${encodeURIComponent(this.keyringId)}&slotId=${slotId}#/keyring/import/push`); |
| 47 | } |
| 48 | |
| 49 | async onImportOk() { |
| 50 | const [importResult] = await this.keyring.importKeys([{type: 'public', armored: this.armored}]); |
nothing calls this directly
no test coverage detected