2018-08-26 04:26:02 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-08-23 17:28:30 -04:00
|
|
|
module API
|
2020-10-14 20:08:42 -04:00
|
|
|
class GroupLabels < ::API::Base
|
2018-08-23 17:28:30 -04:00
|
|
|
include PaginationParams
|
2019-01-08 14:59:08 -05:00
|
|
|
helpers ::API::Helpers::LabelHelpers
|
2018-08-23 17:28:30 -04:00
|
|
|
|
|
|
|
before { authenticate! }
|
|
|
|
|
2020-10-29 08:08:50 -04:00
|
|
|
feature_category :issue_tracking
|
|
|
|
|
2018-08-23 17:28:30 -04:00
|
|
|
params do
|
|
|
|
requires :id, type: String, desc: 'The ID of a group'
|
|
|
|
end
|
2021-02-01 04:09:28 -05:00
|
|
|
resource :groups, requirements: ::API::Labels::LABEL_ENDPOINT_REQUIREMENTS do
|
2018-08-23 17:28:30 -04:00
|
|
|
desc 'Get all labels of the group' do
|
2019-01-08 14:59:08 -05:00
|
|
|
detail 'This feature was added in GitLab 11.8'
|
2018-12-28 04:47:00 -05:00
|
|
|
success Entities::GroupLabel
|
2018-08-23 17:28:30 -04:00
|
|
|
end
|
|
|
|
params do
|
2019-08-06 12:27:46 -04:00
|
|
|
optional :with_counts, type: Boolean, default: false,
|
|
|
|
desc: 'Include issue and merge request counts'
|
2019-09-26 14:06:29 -04:00
|
|
|
optional :include_ancestor_groups, type: Boolean, default: true,
|
|
|
|
desc: 'Include ancestor groups'
|
2020-10-23 14:08:31 -04:00
|
|
|
optional :include_descendant_groups, type: Boolean, default: false,
|
|
|
|
desc: 'Include descendant groups. This feature was added in GitLab 13.6'
|
|
|
|
optional :only_group_labels, type: Boolean, default: true,
|
|
|
|
desc: 'Toggle to include only group labels or also project labels. This feature was added in GitLab 13.6'
|
|
|
|
optional :search, type: String,
|
|
|
|
desc: 'Keyword to filter labels by. This feature was added in GitLab 13.6'
|
2018-08-23 17:28:30 -04:00
|
|
|
use :pagination
|
|
|
|
end
|
|
|
|
get ':id/labels' do
|
2020-10-23 14:08:31 -04:00
|
|
|
get_labels(user_group, Entities::GroupLabel, declared_params)
|
2018-08-23 17:28:30 -04:00
|
|
|
end
|
|
|
|
|
2019-09-27 11:06:16 -04:00
|
|
|
desc 'Get a single label' do
|
|
|
|
detail 'This feature was added in GitLab 12.4.'
|
|
|
|
success Entities::GroupLabel
|
|
|
|
end
|
|
|
|
params do
|
|
|
|
optional :include_ancestor_groups, type: Boolean, default: true,
|
|
|
|
desc: 'Include ancestor groups'
|
2020-10-23 14:08:31 -04:00
|
|
|
optional :include_descendant_groups, type: Boolean, default: false,
|
|
|
|
desc: 'Include descendant groups. This feature was added in GitLab 13.6'
|
|
|
|
optional :only_group_labels, type: Boolean, default: true,
|
|
|
|
desc: 'Toggle to include only group labels or also project labels. This feature was added in GitLab 13.6'
|
2019-09-27 11:06:16 -04:00
|
|
|
end
|
|
|
|
get ':id/labels/:name' do
|
2020-10-23 14:08:31 -04:00
|
|
|
get_label(user_group, Entities::GroupLabel, declared_params)
|
2019-09-27 11:06:16 -04:00
|
|
|
end
|
|
|
|
|
2018-08-23 17:28:30 -04:00
|
|
|
desc 'Create a new label' do
|
2019-01-08 14:59:08 -05:00
|
|
|
detail 'This feature was added in GitLab 11.8'
|
2018-12-28 04:47:00 -05:00
|
|
|
success Entities::GroupLabel
|
2018-08-23 17:28:30 -04:00
|
|
|
end
|
|
|
|
params do
|
2019-01-06 14:31:37 -05:00
|
|
|
use :label_create_params
|
2018-08-23 17:28:30 -04:00
|
|
|
end
|
|
|
|
post ':id/labels' do
|
2019-01-06 14:31:37 -05:00
|
|
|
create_label(user_group, Entities::GroupLabel)
|
2018-08-23 17:28:30 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
desc 'Update an existing label. At least one optional parameter is required.' do
|
2019-09-27 11:06:16 -04:00
|
|
|
detail 'This feature was added in GitLab 11.8 and deprecated in GitLab 12.4.'
|
2018-12-28 04:47:00 -05:00
|
|
|
success Entities::GroupLabel
|
2018-08-23 17:28:30 -04:00
|
|
|
end
|
|
|
|
params do
|
2020-12-07 10:09:49 -05:00
|
|
|
optional :label_id, type: Integer, desc: 'The ID of the label to be updated'
|
2019-09-27 11:06:16 -04:00
|
|
|
optional :name, type: String, desc: 'The name of the label to be updated'
|
|
|
|
use :group_label_update_params
|
|
|
|
exactly_one_of :label_id, :name
|
2018-08-23 17:28:30 -04:00
|
|
|
end
|
|
|
|
put ':id/labels' do
|
2019-01-06 14:31:37 -05:00
|
|
|
update_label(user_group, Entities::GroupLabel)
|
|
|
|
end
|
2018-08-23 17:28:30 -04:00
|
|
|
|
2019-01-06 14:31:37 -05:00
|
|
|
desc 'Delete an existing label' do
|
2019-09-27 11:06:16 -04:00
|
|
|
detail 'This feature was added in GitLab 11.8 and deprecated in GitLab 12.4.'
|
2019-01-06 14:31:37 -05:00
|
|
|
success Entities::GroupLabel
|
|
|
|
end
|
|
|
|
params do
|
|
|
|
requires :name, type: String, desc: 'The name of the label to be deleted'
|
|
|
|
end
|
|
|
|
delete ':id/labels' do
|
|
|
|
delete_label(user_group)
|
2018-08-23 17:28:30 -04:00
|
|
|
end
|
2019-09-27 11:06:16 -04:00
|
|
|
|
|
|
|
desc 'Update an existing label. At least one optional parameter is required.' do
|
|
|
|
detail 'This feature was added in GitLab 12.4.'
|
|
|
|
success Entities::GroupLabel
|
|
|
|
end
|
|
|
|
params do
|
|
|
|
requires :name, type: String, desc: 'The name or id of the label to be updated'
|
|
|
|
use :group_label_update_params
|
|
|
|
end
|
|
|
|
put ':id/labels/:name' do
|
|
|
|
update_label(user_group, Entities::GroupLabel)
|
|
|
|
end
|
|
|
|
|
|
|
|
desc 'Delete an existing label' do
|
|
|
|
detail 'This feature was added in GitLab 12.4.'
|
|
|
|
success Entities::GroupLabel
|
|
|
|
end
|
|
|
|
params do
|
|
|
|
requires :name, type: String, desc: 'The name or id of the label to be deleted'
|
|
|
|
end
|
|
|
|
delete ':id/labels/:name' do
|
|
|
|
delete_label(user_group)
|
|
|
|
end
|
2018-08-23 17:28:30 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|