Uses of Class
org.gitlab4j.api.models.Todo
Packages that use Todo
-
Uses of Todo in org.gitlab4j.api
Methods in org.gitlab4j.api that return TodoModifier and TypeMethodDescriptionTodosApi.markAsDone
(Long todoId) Marks a single pending todo given by its ID for the current user as done.Methods in org.gitlab4j.api that return types with arguments of type TodoModifier and TypeMethodDescriptionTodosApi.getDoneTodos()
Get a List of done todos for the current user.TodosApi.getDoneTodos
(int itemsPerPage) Get a Pager of done todos for the current user.TodosApi.getDoneTodosStream()
Get a Stream of done todos for the current user.TodosApi.getPendingTodos()
Get a List of pending todos for the current user.TodosApi.getPendingTodos
(int itemsPerPage) Get a Pager of pending todos for the current user.TodosApi.getPendingTodosStream()
Get a Stream of pending todos for the current user.TodosApi.getTodos
(Constants.TodoAction action, Long authorId, Long projectId, Long groupId, Constants.TodoState state, Constants.TodoType type) Get a List of all todos that match the provided filter params.TodosApi.getTodos
(Constants.TodoAction action, Long authorId, Long projectId, Long groupId, Constants.TodoState state, Constants.TodoType type, int itemsPerPage) Returns a Pager of todos that match the provided filter params.TodosApi.getTodosStream
(Constants.TodoAction action, Long authorId, Long projectId, Long groupId, Constants.TodoState state, Constants.TodoType type) Get a List of all todos that match the provided filter params.