896a56ada8
* migrate to new manifest format * rename app to alerting.notifications to not conflict with rules * disable custom field selectors as they are not supported in appinstaller
28 lines
868 B
Go
28 lines
868 B
Go
package appregistry
|
|
|
|
import (
|
|
"github.com/google/wire"
|
|
|
|
"github.com/grafana/grafana/pkg/registry/apps/advisor"
|
|
"github.com/grafana/grafana/pkg/registry/apps/alerting/notifications"
|
|
"github.com/grafana/grafana/pkg/registry/apps/alerting/rules"
|
|
"github.com/grafana/grafana/pkg/registry/apps/correlations"
|
|
"github.com/grafana/grafana/pkg/registry/apps/investigations"
|
|
"github.com/grafana/grafana/pkg/registry/apps/playlist"
|
|
"github.com/grafana/grafana/pkg/registry/apps/plugins"
|
|
"github.com/grafana/grafana/pkg/registry/apps/shorturl"
|
|
)
|
|
|
|
var WireSet = wire.NewSet(
|
|
ProvideAppInstallers,
|
|
ProvideBuilderRunners,
|
|
playlist.RegisterAppInstaller,
|
|
investigations.RegisterApp,
|
|
advisor.RegisterApp,
|
|
plugins.RegisterAppInstaller,
|
|
shorturl.RegisterAppInstaller,
|
|
correlations.RegisterAppInstaller,
|
|
rules.RegisterAppInstaller,
|
|
notifications.RegisterAppInstaller,
|
|
)
|