We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77a30fc commit 6a4d91aCopy full SHA for 6a4d91a
app/controlplane/internal/authz/authz.go
@@ -101,8 +101,10 @@ var (
101
PolicyWorkflowRunList = &Policy{ResourceWorkflowRun, ActionList}
102
PolicyWorkflowRunRead = &Policy{ResourceWorkflowRun, ActionRead}
103
// Workflow
104
- PolicyWorkflowList = &Policy{ResourceWorkflow, ActionList}
105
- PolicyWorkflowRead = &Policy{ResourceWorkflow, ActionRead}
+ PolicyWorkflowList = &Policy{ResourceWorkflow, ActionList}
+ PolicyWorkflowRead = &Policy{ResourceWorkflow, ActionRead}
106
+ PolicyWorkflowCreate = &Policy{ResourceWorkflow, ActionCreate}
107
+
108
// User Membership
109
PolicyOrganizationRead = &Policy{Organization, ActionRead}
110
)
0 commit comments