Untie statuses from the project directly (tie to workflows)

This commit is contained in:
2026-03-21 15:35:09 +02:00
parent 218e8a750e
commit eb9f3e982c
10 changed files with 31 additions and 17 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ class TasksController < ApplicationController
Task.all
end
@tasks = @tasks.includes(:status, :workflow, project: :task_statuses)
@tasks = @tasks.includes(:status, :project, workflow: :task_statuses)
end
def show; end