Pascal Precht 6379b17d95 refactor(@desktop/node-management): move to stores architecture
This refactors the node management module to use the stores/views/popups
architecture.

Closes #3711
2021-10-06 15:46:10 -04:00

20 lines
370 B
QML

import QtQuick 2.13
import utils 1.0
QtObject {
id: root
property var nodeModelInst: nodeModel
property var profileModelInst: profileModel
function getMailserverName(activeMailServer) {
return profileModelInst.mailservers.list.getMailserverName(activeMailServer)
}
function onSend(text) {
nodeModelInst.onSend(text)
}
}