Updated permissions

Signed-off-by: Bence Santha <git@santha.eu>
pull/32059/head
Bence Santha 1 month ago
parent a65d8f3031
commit 0357003ddf
  1. 4
      routers/api/v1/api.go

@ -876,7 +876,7 @@ func Routes() *web.Router {
m.Put("/{workflow_id}/disable", reqToken(), reqChecker, actw.DisableWorkflow)
m.Post("/{workflow_id}/dispatches", reqToken(), reqChecker, bind(api.CreateActionWorkflowDispatch{}), actw.DispatchWorkflow)
m.Put("/{workflow_id}/enable", reqToken(), reqChecker, actw.EnableWorkflow)
}, context.ReferencesGitRepo(), reqRepoWriter(unit.TypeCode))
}, context.ReferencesGitRepo(), reqRepoWriter(unit.TypeActions))
})
}
@ -1125,7 +1125,7 @@ func Routes() *web.Router {
)
addActionsWorkflowRoutes(
m,
reqRepoWriter(unit.TypeCode),
reqRepoWriter(unit.TypeActions),
repo.NewActionWorkflow(),
)
m.Group("/hooks/git", func() {

Loading…
Cancel
Save