mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
19 lines
460 B
JavaScript
19 lines
460 B
JavaScript
export default Ember.ArrayController.extend(Discourse.Presence, {
|
|
loading: false,
|
|
itemController: 'admin-log-screened-ip-address',
|
|
|
|
show: function() {
|
|
var self = this;
|
|
this.set('loading', true);
|
|
Discourse.ScreenedIpAddress.findAll().then(function(result) {
|
|
self.set('model', result);
|
|
self.set('loading', false);
|
|
});
|
|
},
|
|
|
|
actions: {
|
|
recordAdded: function(arg) {
|
|
this.get("model").unshiftObject(arg);
|
|
}
|
|
}
|
|
});
|