mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:26:04 +08:00
29 lines
654 B
JavaScript
29 lines
654 B
JavaScript
import { exportEntity } from 'discourse/lib/export-csv';
|
|
import { outputExportResult } from 'discourse/lib/export-result';
|
|
|
|
export default Ember.ArrayController.extend({
|
|
loading: false,
|
|
|
|
actions: {
|
|
clearBlock(row){
|
|
row.clearBlock().then(function(){
|
|
// feeling lazy
|
|
window.location.reload();
|
|
});
|
|
},
|
|
|
|
exportScreenedEmailList() {
|
|
exportEntity('screened_email').then(outputExportResult);
|
|
}
|
|
},
|
|
|
|
show() {
|
|
var self = this;
|
|
self.set('loading', true);
|
|
Discourse.ScreenedEmail.findAll().then(function(result) {
|
|
self.set('model', result);
|
|
self.set('loading', false);
|
|
});
|
|
}
|
|
});
|