mirror of
https://github.com/discourse/discourse.git
synced 2024-12-12 13:23:49 +08:00
32665cf9dd
Enables our new eslint rules which enforce consistent i18n imports. For more info, see 0d58b40cd7
28 lines
708 B
JavaScript
28 lines
708 B
JavaScript
import EmberObject from "@ember/object";
|
|
import { ajax } from "discourse/lib/ajax";
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
|
import { i18n } from "discourse-i18n";
|
|
|
|
export default class ScreenedEmail extends EmberObject {
|
|
static findAll() {
|
|
return ajax("/admin/logs/screened_emails.json").then(function (
|
|
screened_emails
|
|
) {
|
|
return screened_emails.map(function (b) {
|
|
return ScreenedEmail.create(b);
|
|
});
|
|
});
|
|
}
|
|
|
|
@discourseComputed("action")
|
|
actionName(action) {
|
|
return i18n("admin.logs.screened_actions." + action);
|
|
}
|
|
|
|
clearBlock() {
|
|
return ajax("/admin/logs/screened_emails/" + this.id, {
|
|
type: "DELETE",
|
|
});
|
|
}
|
|
}
|