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
19 lines
361 B
CUE
19 lines
361 B
CUE
package kinds
|
|
|
|
import (
|
|
"github.com/grafana/grafana/apps/alerting/notifications/kinds/v0alpha1"
|
|
)
|
|
|
|
templateKind: {
|
|
kind: "TemplateGroup"
|
|
pluralName: "TemplateGroups"
|
|
}
|
|
|
|
templatev0alpha1: templateKind & {
|
|
schema: {
|
|
spec: v0alpha1.TemplateGroupSpec
|
|
}
|
|
// selectableFields: [ // TODO revisit when custom field selectors are supported
|
|
// "spec.title",
|
|
// ]
|
|
} |