2021-10-06 12:23:01 +02:00
|
|
|
import QtQuick 2.13
|
|
|
|
|
|
|
|
import utils 1.0
|
|
|
|
|
|
|
|
QtObject {
|
|
|
|
id: root
|
|
|
|
|
2021-11-15 13:17:41 +03:00
|
|
|
property var nodeModelInst: nodeModel
|
2021-12-13 15:24:21 +01:00
|
|
|
// property var profileModelInst: profileModel
|
2021-10-06 12:23:01 +02:00
|
|
|
|
|
|
|
function getMailserverName(activeMailServer) {
|
2021-12-13 15:24:21 +01:00
|
|
|
// Not Refactored Yet
|
|
|
|
return ""
|
|
|
|
// return profileModelInst.mailservers.list.getMailserverName(activeMailServer)
|
2021-10-06 12:23:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function onSend(text) {
|
2021-11-15 13:17:41 +03:00
|
|
|
nodeModelInst.onSend(text)
|
2021-10-06 12:23:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|