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

21 lines
512 B
Text
Raw Normal View History

2014-12-06 23:15:22 -05:00
import { outputExportResult } from 'admin/lib/export-result';
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
}
});