2019-10-24 01:06:54 +08:00
|
|
|
import Controller from "@ember/controller";
|
2015-11-21 09:27:06 +08:00
|
|
|
import ScreenedEmail from "admin/models/screened-email";
|
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";
|
2014-12-07 12:15:22 +08:00
|
|
|
|
2019-10-24 01:06:54 +08:00
|
|
|
export default Controller.extend({
|
2013-08-15 04:40:12 +08:00
|
|
|
loading: false,
|
|
|
|
|
2014-09-12 04:30:47 +08:00
|
|
|
actions: {
|
2015-02-11 06:20:16 +08:00
|
|
|
clearBlock(row) {
|
2016-10-21 01:26:41 +08:00
|
|
|
row.clearBlock().then(function () {
|
2014-09-12 04:30:47 +08:00
|
|
|
// feeling lazy
|
|
|
|
window.location.reload();
|
|
|
|
});
|
2014-12-07 12:15:22 +08:00
|
|
|
},
|
|
|
|
|
2015-02-11 06:20:16 +08:00
|
|
|
exportScreenedEmailList() {
|
2015-07-25 00:33:53 +08:00
|
|
|
exportEntity("screened_email").then(outputExportResult);
|
2014-09-12 04:30:47 +08:00
|
|
|
},
|
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
|
|
|
});
|
|
|
|
},
|
|
|
|
});
|