Fix JSON API Documentation for getAllTasks() parameters.

Documentation told us to use parameter "status", but it actually has to be "status_id".
This adds corrections to kanboard.py, too. It adds missing getTimezone() to kanboard.py, too.
This commit is contained in:
Oliver Bertuch
2015-01-26 11:49:38 +01:00
parent 62f5eeca68
commit c0e5a469b6
2 changed files with 17 additions and 4 deletions

View File

@@ -1052,7 +1052,7 @@ Response example:
- Purpose: **Get all available tasks**
- Parameters:
- **project_id** (integer, required)
- **status**: The value 1 for active tasks and 0 for inactive (integer, required)
- **status_id**: The value 1 for active tasks and 0 for inactive (integer, required)
- Result on success: **List of tasks**
- Result on failure: **false**
@@ -1065,7 +1065,7 @@ Request example to fetch all tasks on the board:
"id": 133280317,
"params": {
"project_id": 1,
"status": 1
"status_id": 1
}
}
```