2019-10-23 13:06:54 -04:00
|
|
|
import Controller from "@ember/controller";
|
2020-12-01 15:31:26 -03:00
|
|
|
import ScreenedEmail from "admin/models/screened-email";
|
2018-06-15 17:03:24 +02:00
|
|
|
import { exportEntity } from "discourse/lib/export-csv";
|
|
|
|
import { outputExportResult } from "discourse/lib/export-result";
|
2014-12-07 09:45:22 +05:30
|
|
|
|
2019-10-23 13:06:54 -04:00
|
|
|
export default Controller.extend({
|
2013-08-14 16:40:12 -04:00
|
|
|
loading: false,
|
|
|
|
|
2014-09-11 16:30:47 -04:00
|
|
|
actions: {
|
2018-06-15 17:03:24 +02:00
|
|
|
clearBlock(row) {
|
2020-09-04 13:42:47 +02:00
|
|
|
row.clearBlock().then(function () {
|
2014-09-11 16:30:47 -04:00
|
|
|
// feeling lazy
|
|
|
|
window.location.reload();
|
|
|
|
});
|
2014-12-07 09:45:22 +05:30
|
|
|
},
|
|
|
|
|
2015-02-10 17:20:16 -05:00
|
|
|
exportScreenedEmailList() {
|
2018-06-15 17:03:24 +02:00
|
|
|
exportEntity("screened_email").then(outputExportResult);
|
2020-09-04 13:42:47 +02:00
|
|
|
},
|
2014-06-02 16:52:43 +10:00
|
|
|
},
|
|
|
|
|
2015-02-10 17:20:16 -05:00
|
|
|
show() {
|
2018-06-15 17:03:24 +02:00
|
|
|
this.set("loading", true);
|
2020-09-04 13:42:47 +02:00
|
|
|
ScreenedEmail.findAll().then((result) => {
|
2018-06-15 17:03:24 +02:00
|
|
|
this.set("model", result);
|
|
|
|
this.set("loading", false);
|
2013-08-14 16:40:12 -04:00
|
|
|
});
|
2020-09-04 13:42:47 +02:00
|
|
|
},
|
2013-08-14 16:40:12 -04:00
|
|
|
});
|