AuthZ: Add `CoreRoleStorageBackend` to the extension set (#103912)

* Wiring

* Trigger CI

---------

Co-authored-by: mohammad-hamid <mohammad.hamid@grafana.com>
pull/107274/head
Gabriel MABILLE 2 weeks ago committed by GitHub
parent 0f2284d5e6
commit 1244f5c53d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 1
      pkg/registry/apis/wireset.go
  2. 2
      pkg/server/wireexts_oss.go

@ -55,7 +55,6 @@ var WireSet = wire.NewSet(
featuretoggle.RegisterAPIService,
datasource.RegisterAPIService,
folders.RegisterAPIService,
WireSetExts, // this will be moved to wireexts_oss.go in a following PR
iam.RegisterAPIService,
ProvisioningExtras,
provisioning.RegisterAPIService,

@ -11,6 +11,7 @@ import (
"github.com/grafana/grafana/pkg/plugins"
"github.com/grafana/grafana/pkg/plugins/manager"
"github.com/grafana/grafana/pkg/registry"
apisregistry "github.com/grafana/grafana/pkg/registry/apis"
"github.com/grafana/grafana/pkg/registry/apis/secret/contracts"
"github.com/grafana/grafana/pkg/registry/apis/secret/secretkeeper"
"github.com/grafana/grafana/pkg/registry/backgroundsvcs"
@ -127,6 +128,7 @@ var wireExtsBasicSet = wire.NewSet(
unified.ProvideUnifiedStorageClient,
builder.ProvideDefaultBuildHandlerChainFuncFromBuilders,
aggregatorrunner.ProvideNoopAggregatorConfigurator,
apisregistry.WireSetExts,
)
var wireExtsSet = wire.NewSet(

Loading…
Cancel
Save