Method: Gitlab::Client::Boards#board_list

Defined in:
lib/gitlab/client/boards.rb

#board_list(project, board_id, id) ⇒ Gitlab::ObjectifiedHash

Gets a single board list

Examples:

Gitlab.board_list(5, 42, 25)

Parameters:

  • project (Integer, String)

    The ID or name of a project.

  • board_id (Integer)

    The ID of a board.

  • id (Integer)

    The ID of a list.

Returns:

[View source]

100
101
102
# File 'lib/gitlab/client/boards.rb', line 100

def board_list(project, board_id, id)
  get("/projects/#{url_encode project}/boards/#{board_id}/lists/#{id}")
end