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

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

32 lines
758 B
JavaScript
Raw Normal View History

import I18n from "I18n";
import discourseComputed from "discourse-common/utils/decorators";
2016-07-01 01:55:44 +08:00
import { ajax } from "discourse/lib/ajax";
2019-11-09 03:13:35 +08:00
import EmberObject from "@ember/object";
2019-11-09 03:13:35 +08:00
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"
2016-07-01 01:55:44 +08:00
});
}
});
ScreenedEmail.reopenClass({
findAll: function() {
2016-07-01 01:55:44 +08: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;