2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00

FEATURE: export csv for all the logs

This commit is contained in:
Arpit Jalan 2014-12-07 09:45:22 +05:30
parent d2a7904bf2
commit 42cbe6ef2a
18 changed files with 206 additions and 67 deletions

View file

@ -1,10 +1,12 @@
import { outputExportResult } from 'admin/lib/export-result';
export default Ember.ArrayController.extend(Discourse.Presence, {
loading: false,
itemController: 'admin-log-screened-ip-address',
show: function() {
var self = this;
this.set('loading', true);
self.set('loading', true);
Discourse.ScreenedIpAddress.findAll().then(function(result) {
self.set('model', result);
self.set('loading', false);
@ -34,6 +36,10 @@ export default Ember.ArrayController.extend(Discourse.Presence, {
});
}
});
},
exportScreenedIpList: function(subject) {
Discourse.ExportCsv.exportScreenedIpList().then(outputExportResult);
}
}
});