-
Notifications
You must be signed in to change notification settings - Fork 78
Closed
Description
Problem
From the corresponding API issue
Currently, a project in code corps has many tasks. We need to create a new layer, 'task list', that allows ordered grouping of those tasks within a project. The task list should have the following properties:
- name: string
- position: integer
- tasks: has_many tasks
- project: belongs_to project
We'll also need to create/update mirage models & endpoints
Other model changes
Project:
- hasMany TaskLists
Tasks:
- belongsTo TaskList
Subtasks
- Create task-list model & mirage model
- Update project & tasks models & mirage models
- Create task-list mirage endpoint