2015-07-24 12:33:53 -04:00
|
|
|
import { exportEntity } from 'discourse/lib/export-csv';
|
2014-12-22 11:17:04 -05:00
|
|
|
import { outputExportResult } from 'discourse/lib/export-result';
|
2015-11-20 20:27:06 -05:00
|
|
|
import ScreenedEmail from 'admin/models/screened-email';
|
2014-12-06 23:15:22 -05:00
|
|
|
|
2016-10-20 13:26:41 -04:00
|
|
|
export default Ember.Controller.extend({
|
2013-08-14 16:40:12 -04:00
|
|
|
loading: false,
|
|
|
|
|
2014-09-11 16:30:47 -04:00
|
|
|
actions: {
|
2015-02-10 17:20:16 -05:00
|
|
|
clearBlock(row){
|
2016-10-20 13:26:41 -04:00
|
|
|
row.clearBlock().then(function() {
|
2014-09-11 16:30:47 -04:00
|
|
|
// feeling lazy
|
|
|
|
window.location.reload();
|
|
|
|
});
|
2014-12-06 23:15:22 -05:00
|
|
|
},
|
|
|
|
|
2015-02-10 17:20:16 -05:00
|
|
|
exportScreenedEmailList() {
|
2015-07-24 12:33:53 -04:00
|
|
|
exportEntity('screened_email').then(outputExportResult);
|
2014-09-11 16:30:47 -04:00
|
|
|
}
|
2014-06-02 02:52:43 -04:00
|
|
|
},
|
|
|
|
|
2015-02-10 17:20:16 -05:00
|
|
|
show() {
|
2016-10-20 13:26:41 -04:00
|
|
|
this.set('loading', true);
|
|
|
|
ScreenedEmail.findAll().then(result => {
|
|
|
|
this.set('model', result);
|
|
|
|
this.set('loading', false);
|
2013-08-14 16:40:12 -04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|