2015-07-24 12:33:53 -04:00
|
|
|
import { exportEntity } from 'discourse/lib/export-csv';
|
2014-12-22 11:17:04 -05:00
|
|
|
import { outputExportResult } from 'discourse/lib/export-result';
|
2015-11-20 20:27:06 -05:00
|
|
|
import ScreenedUrl from 'admin/models/screened-url';
|
2014-12-06 23:15:22 -05:00
|
|
|
|
2015-05-12 04:49:05 -04:00
|
|
|
export default Ember.ArrayController.extend({
|
2013-08-15 10:48:30 -04:00
|
|
|
loading: false,
|
|
|
|
|
2015-02-10 17:20:16 -05:00
|
|
|
show() {
|
|
|
|
const self = this;
|
2014-12-06 23:15:22 -05:00
|
|
|
self.set('loading', true);
|
2015-11-20 20:27:06 -05:00
|
|
|
ScreenedUrl.findAll().then(function(result) {
|
2014-10-31 17:35:27 -04:00
|
|
|
self.set('model', result);
|
2013-08-15 10:48:30 -04:00
|
|
|
self.set('loading', false);
|
|
|
|
});
|
2014-12-06 23:15:22 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
actions: {
|
2015-02-10 17:20:16 -05:00
|
|
|
exportScreenedUrlList() {
|
2015-07-24 12:33:53 -04:00
|
|
|
exportEntity('screened_url').then(outputExportResult);
|
2014-12-06 23:15:22 -05:00
|
|
|
}
|
2013-08-15 10:48:30 -04:00
|
|
|
}
|
|
|
|
});
|