2014-12-06 23:15:22 -05:00
|
|
|
import { outputExportResult } from 'admin/lib/export-result';
|
|
|
|
|
2014-07-22 23:20:45 -04:00
|
|
|
export default Ember.ArrayController.extend(Discourse.Presence, {
|
2013-08-15 10:48:30 -04:00
|
|
|
loading: false,
|
|
|
|
|
|
|
|
show: function() {
|
|
|
|
var 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: {
|
|
|
|
exportScreenedUrlList: function(subject) {
|
|
|
|
Discourse.ExportCsv.exportScreenedUrlList().then(outputExportResult);
|
|
|
|
}
|
2013-08-15 10:48:30 -04:00
|
|
|
}
|
|
|
|
});
|