Dashboards: Prevent saving to a non-existent folder (#103503)

This commit is contained in:
Stephanie Hingtgen
2025-04-07 09:02:20 +03:00
committed by GitHub
parent ed9b649ed6
commit 8cd6f837a5
4 changed files with 14 additions and 3 deletions
@@ -427,12 +427,12 @@ func TestIntegrationDashboardDataAccess(t *testing.T) {
"tags": []interface{}{},
}),
Overwrite: true,
FolderUID: "2",
FolderUID: savedFolder.UID,
UserID: 100,
}
dash, err := dashboardStore.SaveDashboard(context.Background(), cmd)
require.NoError(t, err)
require.EqualValues(t, dash.FolderUID, "2")
require.EqualValues(t, dash.FolderUID, savedFolder.UID)
cmd = dashboards.SaveDashboardCommand{
OrgID: 1,