Method: Gitlab::Client::Boards#board_lists

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

#board_lists(project, id) ⇒ Gitlab::ObjectifiedHash

Gets a board lists

Examples:

Gitlab.board_lists(5, 42)

Parameters:

  • project (Integer, String)

    The ID or name of a project.

  • id (Integer)

    The ID of a board.

Returns:


86
87
88
# File 'lib/gitlab/client/boards.rb', line 86

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