mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
22 lines
617 B
JavaScript
22 lines
617 B
JavaScript
import { ajax } from 'discourse/lib/ajax';
|
|
const ScreenedEmail = Discourse.Model.extend({
|
|
actionName: function() {
|
|
return I18n.t("admin.logs.screened_actions." + this.get('action'));
|
|
}.property('action'),
|
|
|
|
clearBlock: function() {
|
|
return ajax('/admin/logs/screened_emails/' + this.get('id'), {method: 'DELETE'});
|
|
}
|
|
});
|
|
|
|
ScreenedEmail.reopenClass({
|
|
findAll: function() {
|
|
return ajax("/admin/logs/screened_emails.json").then(function(screened_emails) {
|
|
return screened_emails.map(function(b) {
|
|
return ScreenedEmail.create(b);
|
|
});
|
|
});
|
|
}
|
|
});
|
|
|
|
export default ScreenedEmail;
|