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