Added success messages to power change
When power change occurs successfully notify user that this has happened and they need to refresh page to see the updated power status in the node details. Currently, prior to this patch, an updated power state will result in a blank field where the power state would normally show on/off. Change-Id: Ibbde2bc60a6f3c9778e62b0de61c70d27d1189f4
This commit is contained in:
parent
c35aa806b1
commit
8c555b6a15
@ -148,6 +148,9 @@
|
||||
state: 'on'
|
||||
};
|
||||
return apiService.patch('/api/ironic/nodes/' + uuid + '/states/power', data)
|
||||
.success(function () {
|
||||
toastService.add('success', gettext('Refresh page to see updated power status'));
|
||||
})
|
||||
.error(function () {
|
||||
toastService.add('error', gettext('Unable to power on the node'));
|
||||
});
|
||||
@ -167,6 +170,9 @@
|
||||
state: 'off'
|
||||
};
|
||||
return apiService.patch('/api/ironic/nodes/' + uuid + '/states/power', data)
|
||||
.success(function () {
|
||||
toastService.add('success', gettext('Refresh page to see updated power status'));
|
||||
})
|
||||
.error(function () {
|
||||
toastService.add('error', gettext('Unable to power off the node'));
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user