2014-12-22 11:17:04 -05:00
|
|
|
import { outputExportResult } from 'discourse/lib/export-result';
|
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);
|
2013-08-15 10:48:30 -04:00
|
|
|
Discourse.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() {
|
2014-12-06 23:15:22 -05:00
|
|
|
Discourse.ExportCsv.exportScreenedUrlList().then(outputExportResult);
|
|
|
|
}
|
2013-08-15 10:48:30 -04:00
|
|
|
}
|
|
|
|
});
|