mirror of
https://github.com/coder/coder.git
synced 2025-07-06 15:41:45 +00:00
12 lines
236 B
Go
12 lines
236 B
Go
package rbac
|
|
|
|
// Action represents the allowed actions to be done on an object.
|
|
type Action string
|
|
|
|
const (
|
|
ActionCreate Action = "create"
|
|
ActionRead Action = "read"
|
|
ActionUpdate Action = "update"
|
|
ActionDelete Action = "delete"
|
|
)
|