allow moving tasks between projects.
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-02-14 17:44:07 +01:00
parent 73855ffdd1
commit 8313a27251
6 changed files with 99 additions and 3 deletions
+2 -1
View File
@@ -94,7 +94,8 @@ func (r *taskRepository) Update(ctx context.Context, task models.Task) error {
description = :description,
active = :active,
end_time = :end_time,
status_tag = :status_tag
status_tag = :status_tag,
project_id = :project_id
WHERE task_id=:task_id
`, &task)
if err != nil {