Untitled
unknown
plain_text
3 years ago
202 B
8
Indexable
//loop throughout subtasks and output code
async function rebaseline() {
for (const id of issue.subtasks.map(i => i.id)) {
const task = await getIssue(id);
debug(task.title);
}
}Editor is loading...