discourse/app/assets/javascripts/admin/lib/export-result.js.es6

8 lines
195 B
Plaintext
Raw Normal View History

2014-12-07 09:45:22 +05:30
export function outputExportResult(result) {
if (result.success) {
bootbox.alert(I18n.t("admin.export_csv.success"));
} else {
bootbox.alert(I18n.t("admin.export_csv.failed"));
}
}