mirror of
https://github.com/status-im/desktop-ui-tests.git
synced 2025-01-12 05:44:19 +00:00
15 lines
236 B
QML
15 lines
236 B
QML
|
import QtQuick 2.14
|
||
|
|
||
|
QtObject {
|
||
|
id: chatsModel
|
||
|
property var ensView: QtObject {
|
||
|
function isEnsVerified(author) {
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function alias(author) {
|
||
|
return "some alias"
|
||
|
}
|
||
|
}
|