Package | Description |
---|---|
org.gitlab4j.api |
Modifier and Type | Method and Description |
---|---|
Todo |
TodosApi.markAsDone(Integer todoId)
Marks a single pending todo given by its ID for the current user as done.
|
Modifier and Type | Method and Description |
---|---|
List<Todo> |
TodosApi.getDoneTodos()
Get a List of done todos for the current user.
|
Pager<Todo> |
TodosApi.getDoneTodos(int itemsPerPage)
Get a Pager of done todos for the current user.
|
Stream<Todo> |
TodosApi.getDoneTodosStream()
Get a Stream of done todos for the current user.
|
List<Todo> |
TodosApi.getPendingTodos()
Get a List of pending todos for the current user.
|
Pager<Todo> |
TodosApi.getPendingTodos(int itemsPerPage)
Get a Pager of pending todos for the current user.
|
Stream<Todo> |
TodosApi.getPendingTodosStream()
Get a Stream of pending todos for the current user.
|
List<Todo> |
TodosApi.getTodos(Constants.TodoAction action,
Integer authorId,
Integer projectId,
Integer groupId,
Constants.TodoState state,
Constants.TodoType type)
Get a List of all todos that match the provided filter params.
|
Pager<Todo> |
TodosApi.getTodos(Constants.TodoAction action,
Integer authorId,
Integer projectId,
Integer groupId,
Constants.TodoState state,
Constants.TodoType type,
int itemsPerPage)
Returns a Pager of todos that match the provided filter params.
|
Stream<Todo> |
TodosApi.getTodosStream(Constants.TodoAction action,
Integer authorId,
Integer projectId,
Integer groupId,
Constants.TodoState state,
Constants.TodoType type)
Get a List of all todos that match the provided filter params.
|
Copyright © 2021. All rights reserved.