Source: factory.core/ObjTicketLink.py
Manages links and dependencies between tickets.
Supports link types: BLOCKS, RELATED, DUPLICATE,
CHILD. Links are directional from source to target.
| Method | Signature | Description |
|---|---|---|
| create | create(source_guid: str, target_guid: str, link_type: str = LinkType.RELATED, created_by: str = '') -> str |
Create a link between two tickets. |
| get_links | get_links(guid: str) -> list |
Get all links for a ticket (source or |
| get_blocked_by | get_blocked_by(guid: str) -> list |
Get tickets that block this ticket. |
| remove_link | remove_link(guid: str) -> None |
Remove a link by its guid. |
List all links for a ticket.