mirror of
https://github.com/discourse/discourse.git
synced 2025-02-12 14:24:54 +00:00
16 lines
354 B
JavaScript
16 lines
354 B
JavaScript
export default Discourse.Route.extend({
|
|
|
|
actions: {
|
|
exportUsers: function() {
|
|
Discourse.ExportCsv.exportUserList().then(function(result) {
|
|
if (result.success) {
|
|
bootbox.alert(I18n.t("admin.export_csv.success"));
|
|
} else {
|
|
bootbox.alert(I18n.t("admin.export_csv.failed"));
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
});
|