Commit f4c2f3a4 authored by Annabel Dunstone Gray's avatar Annabel Dunstone Gray

Change issue board defaults

parent 9a13f885
...@@ -8,10 +8,8 @@ ...@@ -8,10 +8,8 @@
data () { data () {
return { return {
predefinedLabels: [ predefinedLabels: [
new ListLabel({ title: 'Development', color: '#5CB85C' }), new ListLabel({ title: 'To Do', color: '#F0AD4E' }),
new ListLabel({ title: 'Testing', color: '#F0AD4E' }), new ListLabel({ title: 'Doing', color: '#5CB85C' })
new ListLabel({ title: 'Production', color: '#FF5F00' }),
new ListLabel({ title: 'Ready', color: '#FF0000' })
] ]
} }
}, },
......
...@@ -25,10 +25,8 @@ module Boards ...@@ -25,10 +25,8 @@ module Boards
def label_params def label_params
[ [
{ name: 'Development', color: '#5CB85C' }, { name: 'To Do', color: '#F0AD4E' },
{ name: 'Testing', color: '#F0AD4E' }, { name: 'Doing', color: '#5CB85C' }
{ name: 'Production', color: '#FF5F00' },
{ name: 'Ready', color: '#FF0000' }
] ]
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment