fixing-search #1

Merged
builderadmin merged 3 commits from fixing-search into main 2025-10-08 14:21:05 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 74e03916b7 - Show all commits

View File

@ -127,7 +127,7 @@ def add_task(project_id: int, title: str, description: str = ""):
}
try:
response = session.post(
response = session.put(
f"{VIKUNJA_URL}/api/v1/projects/{project_id}/tasks",
json=task_payload
)