discourse/app/assets/javascripts/admin/lib/export-result.js.es6
2014-12-11 23:33:26 +05:30

7 lines
195 B
JavaScript

export function outputExportResult(result) {
if (result.success) {
bootbox.alert(I18n.t("admin.export_csv.success"));
} else {
bootbox.alert(I18n.t("admin.export_csv.failed"));
}
}