mirror of
https://github.com/discourse/discourse.git
synced 2025-02-18 09:12:45 +08:00
16 lines
354 B
Plaintext
16 lines
354 B
Plaintext
![]() |
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"));
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
});
|