mirror of
https://github.com/status-im/desktop-ui-tests.git
synced 2025-01-11 21:34:15 +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"
|
|
}
|
|
}
|