Method: Gitlab::Client::GroupBoards#group_board

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

#group_board(group, id) ⇒ Gitlab::ObjectifiedHash

Gets a single group issue board.

Examples:

Gitlab.group_board(5, 1)

Parameters:

  • group (Integer, String)

    The ID or name of a group.

  • id (Integer)

    The ID of the issue board.

Returns:



26
27
28
# File 'lib/gitlab/client/group_boards.rb', line 26

def group_board(group, id)
  get("/groups/#{url_encode group}/boards/#{id}")
end