K8s: Dashboards: Add search to dashboard service (#98395)

This commit is contained in:
Stephanie Hingtgen
2025-01-02 08:39:45 -07:00
committed by GitHub
parent 81ca734680
commit 03f7a7d89d
21 changed files with 687 additions and 70 deletions

View File

@ -838,14 +838,14 @@ func getDashboardShouldReturn200WithConfig(t *testing.T, sc *scenarioContext, pr
if dashboardService == nil {
dashboardService, err = service.ProvideDashboardServiceImpl(
cfg, dashboardStore, folderStore, features, folderPermissions, dashboardPermissions,
ac, folderSvc, fStore, nil, zanzana.NewNoopClient(), nil, nil,
ac, folderSvc, fStore, nil, zanzana.NewNoopClient(), nil, nil, nil,
)
require.NoError(t, err)
}
dashboardProvisioningService, err := service.ProvideDashboardServiceImpl(
cfg, dashboardStore, folderStore, features, folderPermissions, dashboardPermissions,
ac, folderSvc, fStore, nil, zanzana.NewNoopClient(), nil, nil,
ac, folderSvc, fStore, nil, zanzana.NewNoopClient(), nil, nil, nil,
)
require.NoError(t, err)