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

8 lines
195 B
Text
Raw Normal View History

2014-12-06 23:15:22 -05:00
export function outputExportResult(result) {
if (result.success) {
bootbox.alert(I18n.t("admin.export_csv.success"));
} else {
bootbox.alert(I18n.t("admin.export_csv.failed"));
}
}