b1de534092
A breaking change was introduced by this grafana-app-sdk PR: https://github.com/grafana/grafana-app-sdk/pull/795 This PR refactors the definition of our CUE files (manifest and kinds) to match the new model in the latest version of grafana-app-sdk.
21 lines
312 B
CUE
21 lines
312 B
CUE
package kinds
|
|
|
|
import (
|
|
"github.com/grafana/grafana/apps/iam/kinds/v0alpha1"
|
|
)
|
|
|
|
teambindingKind: {
|
|
kind: "TeamBinding"
|
|
pluralName: "TeamBindings"
|
|
codegen: {
|
|
ts: { enabled: false }
|
|
go: { enabled: true }
|
|
}
|
|
}
|
|
|
|
teambindingv0alpha1: teambindingKind & {
|
|
schema: {
|
|
spec: v0alpha1.TeamBindingSpec
|
|
}
|
|
}
|