Problem
We need to add a done boolean column to TaskList, similar to the inbox column, to indicate whether the column should be the recipient of completed tasks and issues.
- Add the column where the default is
false
- Add the column to the
default_task_lists in TaskList model
- our current "Done" column should be the
done: true one here
- Add model tests
- Add to the views
- Add view tests
- We'll need to add migrations for existing projects to add this (can look to the
priv/repo/add_default_tasks_to_projects.exs for inspiration).
- we want the columns titled "Done" to be have
done: true
- for each project, we should find any tasks that are
closed and move them to this list
Problem
We need to add a
donebooleancolumn toTaskList, similar to theinboxcolumn, to indicate whether the column should be the recipient of completed tasks and issues.falsedefault_task_listsinTaskListmodeldone: trueone herepriv/repo/add_default_tasks_to_projects.exsfor inspiration).done: trueclosedand move them to this list