summaryrefslogtreecommitdiff
path: root/docs/gl_objects/todos.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/gl_objects/todos.rst')
-rw-r--r--docs/gl_objects/todos.rst44
1 files changed, 0 insertions, 44 deletions
diff --git a/docs/gl_objects/todos.rst b/docs/gl_objects/todos.rst
deleted file mode 100644
index 24a14c2..0000000
--- a/docs/gl_objects/todos.rst
+++ /dev/null
@@ -1,44 +0,0 @@
-#####
-Todos
-#####
-
-Reference
----------
-
-* v4 API:
-
- + :class:`~gitlab.objects.Todo`
- + :class:`~gitlab.objects.TodoManager`
- + :attr:`gitlab.Gitlab.todos`
-
-* GitLab API: https://docs.gitlab.com/ce/api/todos.html
-
-Examples
---------
-
-List active todos::
-
- todos = gl.todos.list()
-
-You can filter the list using the following parameters:
-
-* ``action``: can be ``assigned``, ``mentioned``, ``build_failed``, ``marked``,
- or ``approval_required``
-* ``author_id``
-* ``project_id``
-* ``state``: can be ``pending`` or ``done``
-* ``type``: can be ``Issue`` or ``MergeRequest``
-
-For example::
-
- todos = gl.todos.list(project_id=1)
- todos = gl.todos.list(state='done', type='Issue')
-
-Mark a todo as done::
-
- todos = gl.todos.list(project_id=1)
- todos[0].mark_as_done()
-
-Mark all the todos as done::
-
- gl.todos.mark_all_as_done()