75
edits
(Create the world's most basic kanban board) |
(Create basic priority board for e10s SW project) |
||
| Line 1: | Line 1: | ||
E10S Service Worker Bugs: | |||
'''Must Have:''' | |||
<bugzilla> | |||
{ | |||
"f1":"status_whiteboard", | |||
"o1":"equals", | |||
"v1":"SW-MUST", | |||
"include_fields":"id,summary,status,resolution, priority", | |||
"status":["NEW","REOPENED"] | |||
} | |||
</bugzilla> | |||
'''Nice To have:''' | |||
<bugzilla> | |||
{ | |||
"f1":"status_whiteboard", | |||
"o1":"equals", | |||
"v1":"SW-NICE", | |||
"include_fields":"id,summary,status,resolution, priority", | |||
"status":["NEW","REOPENED"] | |||
} | |||
</bugzilla> | |||
'''Cleanup:''' | |||
<bugzilla> | |||
{ | |||
"f1":"status_whiteboard", | |||
"o1":"equals", | |||
"v1":"SW-CLEANUP", | |||
"include_fields":"id,summary,status,resolution, priority", | |||
"status":["NEW","REOPENED"] | |||
} | |||
</bugzilla> | |||
'''Backlog:''' | |||
<bugzilla> | |||
{ | |||
"f1":"status_whiteboard", | |||
"o1":"equals", | |||
"v1":"SW-BACKLOG", | |||
"include_fields":"id,summary,status,resolution, priority", | |||
"status":["NEW","REOPENED"] | |||
} | |||
</bugzilla> | |||
edits