discourse/app/assets/javascripts/admin/controllers/admin-email-index.js.es6

58 lines
1.4 KiB
Plaintext
Raw Normal View History

2018-06-15 11:03:24 -04:00
import { ajax } from "discourse/lib/ajax";
export default Ember.Controller.extend({
/**
Is the "send test email" button disabled?
@property sendTestEmailDisabled
**/
2018-06-15 11:03:24 -04:00
sendTestEmailDisabled: Em.computed.empty("testEmailAddress"),
/**
Clears the 'sentTestEmail' property on successful send.
@method testEmailAddressChanged
**/
testEmailAddressChanged: function() {
2018-06-15 11:03:24 -04:00
this.set("sentTestEmail", false);
}.observes("testEmailAddress"),
2013-09-16 14:08:55 -04:00
actions: {
/**
Sends a test email to the currently entered email address
@method sendTestEmail
**/
sendTestEmail: function() {
this.setProperties({
sendingEmail: true,
sentTestEmail: false
});
2013-09-16 14:08:55 -04:00
var self = this;
2016-06-30 13:55:44 -04:00
ajax("/admin/email/test", {
2018-06-15 11:03:24 -04:00
type: "POST",
data: { email_address: this.get("testEmailAddress") }
})
.then(
function() {
self.set("sentTestEmail", true);
},
function(e) {
if (e.responseJSON && e.responseJSON.errors) {
bootbox.alert(
I18n.t("admin.email.error", {
server_error: e.responseJSON.errors[0]
})
);
} else {
bootbox.alert(I18n.t("admin.email.test_error"));
}
}
)
.finally(function() {
self.set("sendingEmail", false);
});
2013-09-16 14:08:55 -04:00
}
}
});