2014-12-23 00:17:04 +08:00
|
|
|
import { outputExportResult } from 'discourse/lib/export-result';
|
2014-12-07 12:15:22 +08:00
|
|
|
|
2015-05-12 16:49:05 +08:00
|
|
|
export default Ember.ArrayController.extend({
|
2013-08-15 04:40:12 +08:00
|
|
|
loading: false,
|
|
|
|
|
2014-09-12 04:30:47 +08:00
|
|
|
actions: {
|
2015-02-11 06:20:16 +08:00
|
|
|
clearBlock(row){
|
2014-09-12 04:30:47 +08:00
|
|
|
row.clearBlock().then(function(){
|
|
|
|
// feeling lazy
|
|
|
|
window.location.reload();
|
|
|
|
});
|
2014-12-07 12:15:22 +08:00
|
|
|
},
|
|
|
|
|
2015-02-11 06:20:16 +08:00
|
|
|
exportScreenedEmailList() {
|
2014-12-07 12:15:22 +08:00
|
|
|
Discourse.ExportCsv.exportScreenedEmailList().then(outputExportResult);
|
2014-09-12 04:30:47 +08:00
|
|
|
}
|
2014-06-02 14:52:43 +08:00
|
|
|
},
|
|
|
|
|
2015-02-11 06:20:16 +08:00
|
|
|
show() {
|
2013-08-15 04:40:12 +08:00
|
|
|
var self = this;
|
2014-12-07 12:15:22 +08:00
|
|
|
self.set('loading', true);
|
2013-08-15 04:40:12 +08:00
|
|
|
Discourse.ScreenedEmail.findAll().then(function(result) {
|
2014-11-01 05:35:27 +08:00
|
|
|
self.set('model', result);
|
2013-08-15 04:40:12 +08:00
|
|
|
self.set('loading', false);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|