discourse/app/assets/javascripts/admin/controllers/admin-logs-screened-urls.js.es6

22 lines
521 B
Plaintext
Raw Normal View History

2018-06-15 23:03:24 +08:00
import { exportEntity } from "discourse/lib/export-csv";
import { outputExportResult } from "discourse/lib/export-result";
import ScreenedUrl from "admin/models/screened-url";
2014-12-07 12:15:22 +08:00
export default Ember.Controller.extend({
2013-08-15 22:48:30 +08:00
loading: false,
show() {
2018-06-15 23:03:24 +08:00
this.set("loading", true);
ScreenedUrl.findAll().then(result => {
2018-06-15 23:03:24 +08:00
this.set("model", result);
this.set("loading", false);
2013-08-15 22:48:30 +08:00
});
2014-12-07 12:15:22 +08:00
},
actions: {
exportScreenedUrlList() {
2018-06-15 23:03:24 +08:00
exportEntity("screened_url").then(outputExportResult);
2014-12-07 12:15:22 +08:00
}
2013-08-15 22:48:30 +08:00
}
});