1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-09 14:34:35 +00:00

Merge pull request from techAPJ/patch-3

FIX: exportUsers action was deleted, so user export was failing
This commit is contained in:
Régis Hanol 2014-12-02 11:39:51 +01:00
commit 45820e9c4c

@ -0,0 +1,15 @@
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"));
}
});
}
}
});