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

29 lines
672 B
Plaintext
Raw Normal View History

2015-04-08 14:17:21 -04:00
import Presence from 'discourse/mixins/presence';
2014-12-22 21:47:04 +05:30
import { outputExportResult } from 'discourse/lib/export-result';
2014-12-07 09:45:22 +05:30
2015-04-08 14:17:21 -04:00
export default Ember.ArrayController.extend(Presence, {
loading: false,
actions: {
clearBlock(row){
row.clearBlock().then(function(){
// feeling lazy
window.location.reload();
});
2014-12-07 09:45:22 +05:30
},
exportScreenedEmailList() {
2014-12-07 09:45:22 +05:30
Discourse.ExportCsv.exportScreenedEmailList().then(outputExportResult);
}
},
show() {
var self = this;
2014-12-07 09:45:22 +05:30
self.set('loading', true);
Discourse.ScreenedEmail.findAll().then(function(result) {
2014-10-31 17:35:27 -04:00
self.set('model', result);
self.set('loading', false);
});
}
});