Files
grafana/apps/alerting/notifications/kinds/routingtree.cue
T
Yuri Tseretyan 896a56ada8 Migrate Alerting Notifications API to app installer (#109309)
* 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
2025-09-23 09:42:40 -04:00

16 lines
256 B
CUE

package kinds
import (
"github.com/grafana/grafana/apps/alerting/notifications/kinds/v0alpha1"
)
routingTreeKind: {
kind: "RoutingTree"
pluralName: "RoutingTrees"
}
routeTreev0alpha1: routingTreeKind & {
schema: {
spec: v0alpha1.RouteTreeSpec
}
}