module Gitlab::Client::Todos

def todos(options = {})

Returns:
  • (Array) -

Options Hash: (**options)
  • :type (Integer) -- The type of a todo. Can be either `Issue` or `MergeRequest`
  • :state (Integer) -- The state of the todo. Can be either `pending` or `done`
  • :project_id (Integer) -- The ID of a project
  • :author_id (Integer) -- The ID of an author
  • :action (Integer) -- The action to be filtered. Can be `assigned`, `mentioned`, `build_failed`, `marked`, or `approval_required`.

Parameters:
  • options (Hash) -- A customizable set of options.
def todos(options = {})
  get('/todos', query: options)
end