/autolink-work-items
Description
Example
/autolink-work-itemsAuthorization
Code Examples
TypeScript
interface WorkItem {
id: number;
title: string;
}
function autolinkWorkItems(items: WorkItem[]) {
items.forEach(item => {
console.log(`Configuring Autolink for Work Item: ${item.id} - ${item.title}`);
});
}
const workItems: WorkItem[] = [
{ id: 1, title: "Fix bug in login" },
{ id: 2, title: "Add new feature" }
];
autolinkWorkItems(workItems);JavaScript
Ruby
Go
Rust
Last updated
Was this helpful?