17 lines
318 B
CUE
17 lines
318 B
CUE
package system
|
|
|
|
import (
|
|
"github.com/cortezaproject/corteza-server/codegen/schema"
|
|
)
|
|
|
|
template: schema.#resource & {
|
|
rbac: {
|
|
operations: {
|
|
read: description: "Read template"
|
|
update: description: "Update template"
|
|
delete: description: "Delete template"
|
|
render: description: "Render template"
|
|
}
|
|
}
|
|
}
|