diff --git a/core/client/views/post-settings.js b/core/client/views/post-settings.js
index c5027d501d..e012791f27 100644
--- a/core/client/views/post-settings.js
+++ b/core/client/views/post-settings.js
@@ -64,6 +64,11 @@
success : function (model, response, options) {
// Repopulate slug in case it changed on the server (e.g. 'new-slug-2')
slugEl.value = model.get('slug');
+ Ghost.notifications.addItem({
+ type: 'success',
+ message: "Permalink successfully changed to " + model.get('slug') + '.',
+ status: 'passive'
+ });
},
error : function (model, xhr) {
Ghost.notifications.addItem({
@@ -117,6 +122,11 @@
}, {
success : function (model, response, options) {
pubDateEl.value = moment(model.get('published_at')).format("DD MMM YY");
+ Ghost.notifications.addItem({
+ type: 'success',
+ message: "Publish date successfully changed to " + pubDateEl.value + '.',
+ status: 'passive'
+ });
},
error : function (model, xhr) {
Ghost.notifications.addItem({