File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -602,7 +602,7 @@ func MoveIssueAcrossBoards(ctx *context.Context) {
602
602
}
603
603
}
604
604
605
- issue , err := models .GetIssueByID (ctx .ParamsInt64 (":issueID " ))
605
+ issue , err := models .GetIssueByID (ctx .ParamsInt64 (":issueIndex " ))
606
606
if err != nil {
607
607
if models .IsErrIssueNotExist (err ) {
608
608
ctx .NotFound ("" , nil )
Original file line number Diff line number Diff line change @@ -872,7 +872,7 @@ func RegisterRoutes(m *web.Route) {
872
872
m .Delete ("" , repo .DeleteProjectBoard )
873
873
m .Post ("/default" , repo .SetDefaultProjectBoard )
874
874
875
- m .Post ("/{issueID }/{sorting}" , repo .MoveIssueAcrossBoards )
875
+ m .Post ("/{issueIndex }/{sorting}" , repo .MoveIssueAcrossBoards )
876
876
})
877
877
})
878
878
}, reqRepoProjectsWriter , context .RepoMustNotBeArchived ())
You can’t perform that action at this time.
0 commit comments