Compare commits

..

2 Commits

Author SHA1 Message Date
builderadmin 74e03916b7 Merge branch 'main' into fixing-search 2025-10-08 14:19:15 +00:00
Isaac Johnson e44291b1f1 post to put, fixes add issue 2025-10-08 05:53:19 -05:00
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
)