Files
grafana/apps/alerting/notifications/kinds/template.cue
2025-07-21 13:32:15 -04:00

29 lines
474 B
CUE

package kinds
import (
"github.com/grafana/grafana/apps/alerting/notifications/kinds/v0alpha1"
)
templateGroup: {
kind: "TemplateGroup"
apiResource: {
groupOverride: "notifications.alerting.grafana.app"
}
pluralName: "TemplateGroups"
current: "v0alpha1"
versions: {
"v0alpha1": {
codegen: {
ts: {enabled: false}
go: {enabled: true}
}
schema: {
spec: v0alpha1.TemplateGroupSpec
}
selectableFields: [
"spec.title",
]
}
}
}