From 1e121c4b75827efbc4b6f779af0791732fb6562d Mon Sep 17 00:00:00 2001 From: vargburz Date: Mon, 10 Apr 2023 17:08:00 +0300 Subject: [PATCH] generate api token on each task creation --- src/panels/corpglory-dataexporter-panel/components/Panel.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/panels/corpglory-dataexporter-panel/components/Panel.tsx b/src/panels/corpglory-dataexporter-panel/components/Panel.tsx index e1cf511..31f3d40 100644 --- a/src/panels/corpglory-dataexporter-panel/components/Panel.tsx +++ b/src/panels/corpglory-dataexporter-panel/components/Panel.tsx @@ -55,6 +55,7 @@ import { RefreshEvent } from '@grafana/runtime'; import React, { useState, useEffect } from 'react'; import * as _ from 'lodash'; +import PluginState from 'plugin_state'; const PANEL_ID = 'corpglory-dataexporter-panel'; const APP_ID = 'corpglory-dataexporter-app'; @@ -215,6 +216,7 @@ export function Panel({ width, height, timeRange, eventBus, timeZone }: Props) { queries: selectedQueries, csvDelimiter, }; + const token = await PluginState.createGrafanaToken(); // TODO: move this function to API Service await queryApi('/task', { method: 'POST', @@ -222,6 +224,7 @@ export function Panel({ width, height, timeRange, eventBus, timeZone }: Props) { task, url: window.location.toString(), timeZoneName, + apiKey: token.key, }, });