discourse/app/assets/javascripts/admin/controllers/admin_email_logs_controller.js

28 lines
653 B
JavaScript
Raw Normal View History

(function() {
window.Discourse.AdminEmailLogsController = Ember.ArrayController.extend(Discourse.Presence, {
2013-02-21 12:54:40 -05:00
sendTestEmailDisabled: (function() {
return this.blank('testEmailAddress');
}).property('testEmailAddress'),
2013-02-21 12:54:40 -05:00
sendTestEmail: function() {
var _this = this;
this.set('sentTestEmail', false);
jQuery.ajax({
url: '/admin/email_logs/test',
type: 'POST',
data: {
email_address: this.get('testEmailAddress')
},
success: function() {
return _this.set('sentTestEmail', true);
}
});
return false;
}
2013-02-21 12:54:40 -05:00
});
}).call(this);