Method: Gitlab::Client::GroupBoards#group_boards

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

#group_boards(group) ⇒ Array<Gitlab::ObjectifiedHash>

Lists Issue Boards in the given group.

Examples:

Gitlab.group_boards(5)

Parameters:

  • group (Integer, String)

    The ID or name of a group.

Returns:



14
15
16
# File 'lib/gitlab/client/group_boards.rb', line 14

def group_boards(group)
  get("/groups/#{url_encode group}/boards")
end