mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-25 00:29:30 -05:00
15 lines
354 B
JavaScript
15 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"));
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
});
|