Method: LabClient::ProjectLabels#promote
- Defined in:
- lib/labclient/projects/labels/promote.rb
#promote(project_id, label_id) ⇒ Object
28 29 30 31 32 33 |
# File 'lib/labclient/projects/labels/promote.rb', line 28 def promote(project_id, label_id) project_id = format_id(project_id) label_id = format_id(label_id) client.request(:put, "projects/#{project_id}/labels/#{label_id}/promote", klass: ProjectLabel) end |