auto reconection when current-server's defaul container hase been changed

This commit is contained in:
ronoaer 2023-09-13 20:49:44 +08:00
parent f11c65c393
commit bfc8c10f3d
10 changed files with 74 additions and 18 deletions

View file

@ -15,11 +15,19 @@ import "../Components"
PageType {
id: root
Connections {
target: ConnectionController
function onReconnectWithChangedContainer(message) {
PageController.showNotificationMessage(message)
}
}
Connections {
target: InstallController
function onUpdateContainerFinished() {
PageController.showNotificationMessage(qsTr("Settings updated successfully"))
function onUpdateContainerFinished(message) {
PageController.showNotificationMessage(message)
}
}