From 3566de38b9907a915187286311d302003e34a783 Mon Sep 17 00:00:00 2001
From: Levente Balogh <balogh.levente.hu@gmail.com>
Date: Mon, 3 Jun 2024 15:21:01 +0200
Subject: [PATCH] Plugin.json: update with extensions info (#4407)

### What changed?

- Manually added ui-extensions metadata to the plugin.json (to be able
to lazy-load plugins in Grafana, based on [this
PR](https://github.com/grafana/grafana/pull/88288)
---
 grafana-plugin/src/plugin.json | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/grafana-plugin/src/plugin.json b/grafana-plugin/src/plugin.json
index ed3dba004d..831866cfed 100644
--- a/grafana-plugin/src/plugin.json
+++ b/grafana-plugin/src/plugin.json
@@ -592,5 +592,13 @@
   "dependencies": {
     "grafanaDependency": ">=9.2.0",
     "plugins": []
-  }
+  },
+  "extensions": [
+    {
+      "extensionPointId": "grafana/user/profile/tab",
+      "title": "IRM",
+      "description": "IRM settings",
+      "type": "component"
+    }
+  ]
 }