mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-28 18:17:29 -05:00
8 lines
195 B
Text
8 lines
195 B
Text
|
export function outputExportResult(result) {
|
||
|
if (result.success) {
|
||
|
bootbox.alert(I18n.t("admin.export_csv.success"));
|
||
|
} else {
|
||
|
bootbox.alert(I18n.t("admin.export_csv.failed"));
|
||
|
}
|
||
|
}
|