mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:47:31 +08:00
30 lines
713 B
JavaScript
30 lines
713 B
JavaScript
import Controller from "@ember/controller";
|
|
import ScreenedEmail from "admin/models/screened-email";
|
|
import { exportEntity } from "discourse/lib/export-csv";
|
|
import { outputExportResult } from "discourse/lib/export-result";
|
|
|
|
export default Controller.extend({
|
|
loading: false,
|
|
|
|
actions: {
|
|
clearBlock(row) {
|
|
row.clearBlock().then(function () {
|
|
// feeling lazy
|
|
window.location.reload();
|
|
});
|
|
},
|
|
|
|
exportScreenedEmailList() {
|
|
exportEntity("screened_email").then(outputExportResult);
|
|
},
|
|
},
|
|
|
|
show() {
|
|
this.set("loading", true);
|
|
ScreenedEmail.findAll().then((result) => {
|
|
this.set("model", result);
|
|
this.set("loading", false);
|
|
});
|
|
},
|
|
});
|