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