Untitled
Anonymous
plain_text
12/01/2022 12:33 PM
272 B
17
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...