getAllKanbanBoards
Description
Retrieves a list of all Kanban boards available in a project or system. Kanban boards are used for visualizing and managing work items in a Kanban methodology, typically without defined sprint cycles.
Return Type
Returns all the boards it can find.
Example
JBoard [] boards = getAllKanbanBoards();
for(JBoard b in boards) {
runnerLog("Id: " + b.id);
runnerLog("Name: " + b.name);
}
See also
Peacock