Method: Gitlab::Client::Boards#create_board_list
- Defined in:
- lib/gitlab/client/boards.rb
#create_board_list(project, board_id, label_id) ⇒ Gitlab::ObjectifiedHash
Creates a new board list. Only for admins and project owners
114 115 116 |
# File 'lib/gitlab/client/boards.rb', line 114 def create_board_list(project, board_id, label_id) post("/projects/#{url_encode project}/boards/#{board_id}/lists", body: { label_id: label_id }) end |