Add UI for entering key backup passphrase

This commit is contained in:
Tobias Fella
2023-07-29 23:18:49 +02:00
parent a0bfd34951
commit e07b876677
8 changed files with 188 additions and 0 deletions

View File

@@ -62,6 +62,15 @@ QQC2.Menu {
height: Kirigami.Units.gridUnit * 42
})
}
QQC2.MenuItem {
text: i18nc("@action:inmenu", "Open Secret Backup")
icon.name: "unlock"
visible: Config.secretBackup
onTriggered: pageStack.pushDialogLayer(Qt.createComponent('org.kde.neochat', 'UnlockSSSSDialog.qml'), {}, {
title: i18nc("@title:window", "Open Key Backup")
})
enabled: Controller.ssssSupported
}
QQC2.MenuItem {
text: i18n("Logout")
icon.name: "list-remove-user"