feat(ui): add handling for lxm.ingest_uri.result messages with success, error, warning, and info notifications

This commit is contained in:
2026-01-07 15:08:49 -06:00
parent f0ab00e9cc
commit 326e80027e

View File

@@ -866,6 +866,18 @@ export default {
}
break;
}
case "lxm.ingest_uri.result": {
if (json.status === "success") {
ToastUtils.success(json.message);
} else if (json.status === "error") {
ToastUtils.error(json.message);
} else if (json.status === "warning") {
ToastUtils.warning(json.message);
} else {
ToastUtils.info(json.message);
}
break;
}
case "identity_switched": {
ToastUtils.success(`Switched to identity: ${json.display_name}`);