mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-28 18:17:29 -05:00
16 lines
367 B
Text
16 lines
367 B
Text
|
export default Discourse.Route.extend({
|
||
|
|
||
|
actions: {
|
||
|
exportScreenedIps: function() {
|
||
|
Discourse.ExportCsv.exportScreenedIpsList().then(function(result) {
|
||
|
if (result.success) {
|
||
|
bootbox.alert(I18n.t("admin.export_csv.success"));
|
||
|
} else {
|
||
|
bootbox.alert(I18n.t("admin.export_csv.failed"));
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
});
|