mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
31 lines
858 B
JavaScript
31 lines
858 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);
|
|
},
|
|
|
|
rollUp: function() {
|
|
var self = this;
|
|
return bootbox.confirm(I18n.t("admin.logs.screened_ips.roll_up_confirm"), I18n.t("no_value"), I18n.t("yes_value"), function (confirmed) {
|
|
if (confirmed) {
|
|
self.set("loading", true)
|
|
return Discourse.ScreenedIpAddress.rollUp().then(function() {
|
|
self.send("show");
|
|
});
|
|
}
|
|
});
|
|
}
|
|
}
|
|
});
|