mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-28 18:17:29 -05:00
7 lines
195 B
JavaScript
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"));
|
|
}
|
|
}
|