diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-01-04 21:14:57 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-01-04 21:14:57 -0500 |
commit | d1d04d6feeebeba2aea5333d7a4229fcec799f75 (patch) | |
tree | 51da4416973b2b60f3d50d5acddf2c4c258c1ff3 /docs/cli.markdown | |
parent | 07b07c7697439dc0e6bdf87f65b4b3bd46f6bfc8 (diff) |
Add subtasks export and move export actions to a specific controller
Diffstat (limited to 'docs/cli.markdown')
-rw-r--r-- | docs/cli.markdown | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/docs/cli.markdown b/docs/cli.markdown index 954b5299..0e2a0203 100644 --- a/docs/cli.markdown +++ b/docs/cli.markdown @@ -33,6 +33,7 @@ Available commands: list Lists commands export export:daily-project-summary Daily project summary CSV export (number of tasks per column and per day) + export:subtasks Subtasks CSV export export:tasks Tasks CSV export notification notification:overdue-tasks Send notifications for overdue tasks @@ -43,6 +44,20 @@ projects Available commands ------------------ +### Subtasks CSV export + +Usage: + +```bash +./kanboard export:subtasks <project_id> <start_date> <end_date> +``` + +Example: + +```bash +./kanboard export:subtasks 1 2014-10-01 2014-11-30 > /tmp/my_custom_export.csv +``` + ### Tasks CSV export Usage: |