mirror of
https://github.com/status-im/desktop-ui-tests.git
synced 2025-02-17 15:16:38 +00:00
25 lines
462 B
QML
25 lines
462 B
QML
import QtQuick 2.14
|
|
|
|
QtObject {
|
|
id: profileModel
|
|
property var contacts: QtObject {
|
|
function isContactBlocked(author) {
|
|
return false;
|
|
}
|
|
|
|
function isAdded(author) {
|
|
return true
|
|
}
|
|
}
|
|
|
|
property var profile: QtObject {
|
|
property string pubKey: "Some author"
|
|
}
|
|
|
|
function qrCode(author) {
|
|
return ""
|
|
}
|
|
|
|
property var ens: ({preferredUserName: "preffered User name"})
|
|
}
|