module Gitlab::Client::Boards

def edit_board(project, id, options = {})

Returns:
  • (Gitlab::ObjectifiedHash) - Information about updated board.

Options Hash: (**options)
  • :weight(optional) (Integer) -- The weight range from 0 to 9, to which the board should be scoped to.
  • :labels(optional) (String) -- Comma-separated list of label names which the board should be scoped to.
  • :milestone_id(optional) (Integer) -- The milestone the board should be scoped to.
  • :assignee_id(optional) (Integer) -- The assignee the board should be scoped to.
  • :name(optional) (String) -- The new name of the board.

Parameters:
  • options (Hash) -- A customizable set of options.
  • id (Integer) -- The ID of a board.
  • project (Integer, String) -- The ID or name of a project.
def edit_board(project, id, options = {})
  put("/projects/#{url_encode project}/boards/#{id}", body: options)
end