mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
19 lines
466 B
JavaScript
19 lines
466 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"));
|
|
}
|
|
});
|
|
},
|
|
|
|
deleteUser: function(user) {
|
|
Discourse.AdminUser.create(user).destroy({ deletePosts: true });
|
|
}
|
|
}
|
|
|
|
});
|