2020-05-14 04:23:41 +08:00
|
|
|
import I18n from "I18n";
|
2019-11-08 05:38:28 +08:00
|
|
|
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-04-26 18:16:21 +08:00
|
|
|
|
2019-11-09 03:13:35 +08:00
|
|
|
const ScreenedEmail = EmberObject.extend({
|
2019-11-08 05:38:28 +08:00
|
|
|
@discourseComputed("action")
|
2019-04-26 18:16:21 +08:00
|
|
|
actionName(action) {
|
|
|
|
return I18n.t("admin.logs.screened_actions." + action);
|
|
|
|
},
|
2014-06-02 14:52:43 +08:00
|
|
|
|
|
|
|
clearBlock: function() {
|
2019-05-27 16:15:39 +08:00
|
|
|
return ajax("/admin/logs/screened_emails/" + this.id, {
|
2020-03-27 04:00:10 +08:00
|
|
|
type: "DELETE"
|
2016-07-01 01:55:44 +08:00
|
|
|
});
|
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() {
|
2016-07-01 01:55:44 +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;
|