1
0

feat(views): save task position

This commit is contained in:
kolaente
2024-03-16 11:36:37 +01:00
parent c36fdb9f5d
commit 786e67f692
6 changed files with 59 additions and 4 deletions

View File

@ -306,6 +306,7 @@ func GetProjectViewByIDAndProject(s *xorm.Session, id, projectID int64) (view *P
}
func GetProjectViewByID(s *xorm.Session, id int64) (view *ProjectView, err error) {
view = &ProjectView{}
exists, err := s.
Where("id = ?", id).
NoAutoCondition().