module Gitlab::Client::Boards

def edit_board_list(project, board_id, id, position)

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

Parameters:
  • id (Integer) -- The ID of a list.
  • board_id (Integer) -- The ID of a board.
  • project (Integer, String) -- The ID or name of a project.
def edit_board_list(project, board_id, id, position)
  put("/projects/#{url_encode project}/boards/#{board_id}/lists/#{id}", body: { position: position })
end