Closed
Description
Add a filed ProjectBoardOrder
or use Priority
from/to Issue struct.
0 = default
highest number is on the top of the list ...
thoughts how to impement the backend:
issue with prio 4 -> 2:
new prio is lower so "Update prio=prio+1 where issue.project_id= .... and prio >= 2 and prio < 4"
issue with prio 3 -> 7:
else "Update prio=prio-1 where issue.project_id= .... and prio > 3 and prio <= 7"
x.ID(issue.id).UpdateCol(prio=newPrio)
Pseudo code don't take it to serious
Blocked by #8346