Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ func UpdateReleasePlan(c *gin.Context) {
permitted = ctx.Resources.SystemActions.ReleasePlan.EditMetadata
case service.ActionUpdateApproval, service.ActionDeleteApproval:
permitted = ctx.Resources.SystemActions.ReleasePlan.EditApproval
case service.ActionUpdateReleaseJob, service.ActionCreateReleaseJob, service.ActionDeleteReleaseJob:
case service.ActionUpdateReleaseJob, service.ActionCreateReleaseJob, service.ActionDeleteReleaseJob, service.ActionReorderReleaseJob:
permitted = ctx.Resources.SystemActions.ReleasePlan.EditSubtasks
default:
ctx.RespErr = e.ErrInvalidParam.AddDesc(fmt.Sprintf("unknown verb: %s", req.Verb))
Expand Down
Loading