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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
743 B
JavaScript
Raw Normal View History

2019-11-08 14:13:35 -05:00
import EmberObject from "@ember/object";
import I18n from "I18n";
2016-06-30 13:55:44 -04:00
import { ajax } from "discourse/lib/ajax";
2019-11-08 14:13:35 -05:00
import discourseComputed from "discourse-common/utils/decorators";
2019-11-08 14:13:35 -05:00
const ScreenedEmail = EmberObject.extend({
@discourseComputed("action")
actionName(action) {
return I18n.t("admin.logs.screened_actions." + action);
},
clearBlock() {
return ajax("/admin/logs/screened_emails/" + this.id, {
type: "DELETE",
2016-06-30 13:55:44 -04:00
});
},
});
ScreenedEmail.reopenClass({
findAll() {
2016-06-30 13:55:44 -04:00
return ajax("/admin/logs/screened_emails.json").then(function (
screened_emails
) {
return screened_emails.map(function (b) {
return ScreenedEmail.create(b);
});
});
},
});
export default ScreenedEmail;