Merge branch 'main' into fixing-search

This commit is contained in:
builderadmin 2025-10-08 14:19:15 +00:00
commit 74e03916b7
1 changed files with 1 additions and 1 deletions

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
)