From de40bbbc6ac31c5e2ea9ef29aa663d10f8a61b5e Mon Sep 17 00:00:00 2001 From: Michael Derynck Date: Wed, 4 Sep 2024 11:45:41 -0600 Subject: [PATCH] Add missing permission to call machine learning plugin (#4983) # What this PR does - Permission necessary for OnCall to make webhook call to Machine Learning was missing, this PR adds it. ## Which issue(s) this PR closes Related to [issue link here] ## Checklist - [x] Unit, integration, and e2e (if applicable) tests updated - [x] Documentation added (or `pr:no public docs` PR label added if not required) - [x] Added the relevant release notes label (see labels prefixed w/ `release:`). These labels dictate how your PR will show up in the autogenerated release notes. --- grafana-plugin/src/plugin.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/grafana-plugin/src/plugin.json b/grafana-plugin/src/plugin.json index ab6f6e46..b87a72ac 100644 --- a/grafana-plugin/src/plugin.json +++ b/grafana-plugin/src/plugin.json @@ -616,6 +616,10 @@ "action": "plugins.app:access", "scope": "plugins:id:grafana-labels-app" }, + { + "action": "plugins.app:access", + "scope": "plugins:id:grafana-ml-app" + }, { "action": "plugins:write", "scope": "plugins:id:grafana-oncall-app"