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';
|
2015-11-21 09:27:06 +08:00
|
|
|
import ScreenedUrl from 'admin/models/screened-url';
|
2014-12-07 12:15:22 +08:00
|
|
|
|
2015-05-12 16:49:05 +08:00
|
|
|
export default Ember.ArrayController.extend({
|
2013-08-15 22:48:30 +08:00
|
|
|
loading: false,
|
|
|
|
|
2015-02-11 06:20:16 +08:00
|
|
|
show() {
|
|
|
|
const self = this;
|
2014-12-07 12:15:22 +08:00
|
|
|
self.set('loading', true);
|
2015-11-21 09:27:06 +08:00
|
|
|
ScreenedUrl.findAll().then(function(result) {
|
2014-11-01 05:35:27 +08:00
|
|
|
self.set('model', result);
|
2013-08-15 22:48:30 +08:00
|
|
|
self.set('loading', false);
|
|
|
|
});
|
2014-12-07 12:15:22 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
actions: {
|
2015-02-11 06:20:16 +08:00
|
|
|
exportScreenedUrlList() {
|
2015-07-25 00:33:53 +08:00
|
|
|
exportEntity('screened_url').then(outputExportResult);
|
2014-12-07 12:15:22 +08:00
|
|
|
}
|
2013-08-15 22:48:30 +08:00
|
|
|
}
|
|
|
|
});
|