mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 22:09:35 +08:00
8559bbe508
releases of Ember
31 lines
712 B
JavaScript
31 lines
712 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: [],
|
|
|
|
actions: {
|
|
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);
|
|
});
|
|
}
|
|
});
|