2019-10-24 01:06:54 +08:00
|
|
|
import Controller from "@ember/controller";
|
2023-10-11 02:38:59 +08:00
|
|
|
import { action } from "@ember/object";
|
2015-07-25 00:33:53 +08:00
|
|
|
import { exportEntity } from "discourse/lib/export-csv";
|
2014-12-23 00:17:04 +08:00
|
|
|
import { outputExportResult } from "discourse/lib/export-result";
|
2023-10-11 02:38:59 +08:00
|
|
|
import ScreenedEmail from "admin/models/screened-email";
|
2014-12-07 12:15:22 +08:00
|
|
|
|
2023-03-15 17:42:12 +08:00
|
|
|
export default class AdminLogsScreenedEmailsController extends Controller {
|
|
|
|
loading = false;
|
2013-08-15 04:40:12 +08:00
|
|
|
|
2023-03-15 17:42:12 +08:00
|
|
|
@action
|
|
|
|
clearBlock(row) {
|
|
|
|
row.clearBlock().then(function () {
|
|
|
|
// feeling lazy
|
|
|
|
window.location.reload();
|
|
|
|
});
|
|
|
|
}
|
2014-12-07 12:15:22 +08:00
|
|
|
|
2023-03-15 17:42:12 +08:00
|
|
|
@action
|
|
|
|
exportScreenedEmailList() {
|
|
|
|
exportEntity("screened_email").then(outputExportResult);
|
|
|
|
}
|
2014-06-02 14:52:43 +08:00
|
|
|
|
2015-02-11 06:20:16 +08:00
|
|
|
show() {
|
2016-10-21 01:26:41 +08:00
|
|
|
this.set("loading", true);
|
|
|
|
ScreenedEmail.findAll().then((result) => {
|
|
|
|
this.set("model", result);
|
|
|
|
this.set("loading", false);
|
2013-08-15 04:40:12 +08:00
|
|
|
});
|
2023-03-15 17:42:12 +08:00
|
|
|
}
|
|
|
|
}
|