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