mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-12 15:24:39 +00:00
afa7928bae
- Added flow which covers `Setup a new Keycard with an existing account` from the keycard settings part (though two sub-flows there are missing, `Unlock Keycard` and `Authentication` cause we don't have them yet). - Updated factory reset flow (part of shared module) that it can read and display metadata from a keycard if they are set, with this update this flow is almost complete, we are missing `Unlock Keycard` flow for it as well.
13 lines
191 B
QML
13 lines
191 B
QML
import QtQuick 2.13
|
|
import utils 1.0
|
|
|
|
QtObject {
|
|
id: root
|
|
|
|
property var keycardModule
|
|
|
|
function runSetupKeycardPopup() {
|
|
root.keycardModule.runSetupKeycardPopup()
|
|
}
|
|
}
|