mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-02 17:54:01 +00:00
5d0eb942b0
Fixes #4674 The part about profile image was already refactpred/fixed
32 lines
705 B
QML
32 lines
705 B
QML
import QtQuick 2.13
|
|
import utils 1.0
|
|
|
|
QtObject {
|
|
id: root
|
|
|
|
property var privacyModule
|
|
|
|
// Module Properties
|
|
property bool mnemonicBackedUp: privacyModule.mnemonicBackedUp
|
|
|
|
function getLinkPreviewWhitelist() {
|
|
return root.privacyModule.getLinkPreviewWhitelist()
|
|
}
|
|
|
|
function changePassword(password, newPassword) {
|
|
root.privacyModule.changePassword(password, newPassword)
|
|
}
|
|
|
|
function getMnemonic() {
|
|
return root.privacyModule.getMnemonic()
|
|
}
|
|
|
|
function removeMnemonic() {
|
|
root.privacyModule.removeMnemonic()
|
|
}
|
|
|
|
function getMnemonicWordAtIndex(index) {
|
|
return root.privacyModule.getMnemonicWordAtIndex(index)
|
|
}
|
|
}
|