mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 19:03:13 +08:00
23 lines
559 B
JavaScript
23 lines
559 B
JavaScript
import Controller from "@ember/controller";
|
|
import { exportEntity } from "discourse/lib/export-csv";
|
|
import { outputExportResult } from "discourse/lib/export-result";
|
|
import ScreenedUrl from "admin/models/screened-url";
|
|
|
|
export default Controller.extend({
|
|
loading: false,
|
|
|
|
show() {
|
|
this.set("loading", true);
|
|
ScreenedUrl.findAll().then(result => {
|
|
this.set("model", result);
|
|
this.set("loading", false);
|
|
});
|
|
},
|
|
|
|
actions: {
|
|
exportScreenedUrlList() {
|
|
exportEntity("screened_url").then(outputExportResult);
|
|
}
|
|
}
|
|
});
|