mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 00:43:24 +08:00
16 lines
367 B
JavaScript
16 lines
367 B
JavaScript
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"));
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
});
|