2018-06-15 23:03:24 +08:00
|
|
|
import { ajax } from "discourse/lib/ajax";
|
2015-11-21 09:27:06 +08:00
|
|
|
const ScreenedEmail = Discourse.Model.extend({
|
2013-08-15 04:40:12 +08:00
|
|
|
actionName: function() {
|
2018-06-15 23:03:24 +08:00
|
|
|
return I18n.t("admin.logs.screened_actions." + this.get("action"));
|
|
|
|
}.property("action"),
|
2014-06-02 14:52:43 +08:00
|
|
|
|
|
|
|
clearBlock: function() {
|
2018-06-15 23:03:24 +08:00
|
|
|
return ajax("/admin/logs/screened_emails/" + this.get("id"), {
|
|
|
|
method: "DELETE"
|
|
|
|
});
|
2014-06-02 14:52:43 +08:00
|
|
|
}
|
2013-08-15 04:40:12 +08:00
|
|
|
});
|
|
|
|
|
2015-11-21 09:27:06 +08:00
|
|
|
ScreenedEmail.reopenClass({
|
2013-12-31 02:29:52 +08:00
|
|
|
findAll: function() {
|
2018-06-15 23:03:24 +08:00
|
|
|
return ajax("/admin/logs/screened_emails.json").then(function(
|
|
|
|
screened_emails
|
|
|
|
) {
|
2013-08-15 04:40:12 +08:00
|
|
|
return screened_emails.map(function(b) {
|
2015-11-21 09:27:06 +08:00
|
|
|
return ScreenedEmail.create(b);
|
2013-08-15 04:40:12 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2015-11-21 09:27:06 +08:00
|
|
|
|
|
|
|
export default ScreenedEmail;
|