wuffle 0.56.1 → 0.57.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -15,6 +15,8 @@
15
15
  * * closed - if the column issues must be closed
16
16
  * * sorting - true if column cards should be sorted
17
17
  * incrementally based on links
18
+ * * fifo - true to turn the default column ordering from
19
+ * last in first out to first in first out
18
20
  * * states - a list of board states to map to this column
19
21
  *
20
22
  * The default column is the column that holds open issues without
@@ -33,9 +35,9 @@ module.exports = {
33
35
  columns: [
34
36
  { name: 'Inbox', label: null },
35
37
  { name: 'Backlog', label: 'backlog', sorting: true },
36
- { name: 'Ready', label: 'ready', sorting: true },
37
- { name: 'In Progress', label: 'in progress', sorting: true },
38
- { name: 'Needs Review', label: 'needs review', sorting: true },
38
+ { name: 'Ready', label: 'ready', sorting: true, fifo: true },
39
+ { name: 'In Progress', label: 'in progress', sorting: true, fifo: true },
40
+ { name: 'Needs Review', label: 'needs review', sorting: true, fifo: true },
39
41
  { name: 'Done', label: null, closed: true }
40
42
  ],
41
43
 
Binary file