mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
28 lines
683 B
JavaScript
28 lines
683 B
JavaScript
/**
|
|
This controller supports the interface for listing screened email addresses in the admin section.
|
|
|
|
@class AdminLogsScreenedEmailsController
|
|
@extends Ember.ArrayController
|
|
@namespace Discourse
|
|
@module Discourse
|
|
**/
|
|
export default Ember.ArrayController.extend(Discourse.Presence, {
|
|
loading: false,
|
|
content: [],
|
|
|
|
clearBlock: function(row){
|
|
row.clearBlock().then(function(){
|
|
// feeling lazy
|
|
window.location.reload();
|
|
});
|
|
},
|
|
|
|
show: function() {
|
|
var self = this;
|
|
this.set('loading', true);
|
|
Discourse.ScreenedEmail.findAll().then(function(result) {
|
|
self.set('content', result);
|
|
self.set('loading', false);
|
|
});
|
|
}
|
|
});
|