discourse/app/assets/javascripts/admin/addon/models/screened-email.js

32 lines
765 B
JavaScript

import EmberObject from "@ember/object";
import I18n from "I18n";
import { ajax } from "discourse/lib/ajax";
import discourseComputed from "discourse-common/utils/decorators";
const ScreenedEmail = EmberObject.extend({
@discourseComputed("action")
actionName(action) {
return I18n.t("admin.logs.screened_actions." + action);
},
clearBlock: function () {
return ajax("/admin/logs/screened_emails/" + this.id, {
type: "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;