Method: Gitlab::Client::Boards#board

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

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

Get a single board.

Examples:

Gitlab.board(5, 1)

Parameters:

  • project (Integer, String)

    The ID or name of a project.

  • id (Integer)

    The ID of a board.

Returns:

[View source]

30
31
32
# File 'lib/gitlab/client/boards.rb', line 30

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