3
0
corteza/system/auth-client.cue
2022-01-26 16:27:36 +01:00

17 lines
383 B
CUE

package system
import (
"github.com/cortezaproject/corteza-server/codegen/schema"
)
authClient: schema.#resource & {
rbac: {
operations: {
read: description: "Read authorization client"
update: description: "Update authorization client"
delete: description: "Delete authorization client"
authorize: description: "Authorize authorization client"
}
}
}