Untitled

 avatar
unknown
plain_text
2 years ago
322 B
4
Indexable
async function rebaseline() {
    for (const id of issue.subtasks.map(i => i.id)) {
        const task = await getIssue(id);
        debug(task.title);
        for (const id2 of task.subtasks.map(j => j.id2)) {
            const task2 = await getIssue(id2);
            debug(task2.title);
        }
    }
}
rebaseline();
Editor is loading...