Enhance issue management tools: add relations and watchers functionality, update README

This commit is contained in:
sha
2026-03-20 14:17:14 +02:00
parent 1bfb98b7c0
commit 42cf48a9a4
5 changed files with 187 additions and 20 deletions
+7
View File
@@ -32,3 +32,10 @@ def _post(path: str, body: dict) -> dict:
resp = client.post(url, headers=_headers(), content=json.dumps(body))
resp.raise_for_status()
return resp.json()
def _delete(path: str) -> None:
url = f"{REDMINE_URL}{path}"
with httpx.Client(timeout=15) as client:
resp = client.delete(url, headers=_headers())
resp.raise_for_status()