gitlab-org--gitlab-foss/lib/api/group_labels.rb

68 lines
2.3 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
module API
class GroupLabels < Grape::API
include PaginationParams
helpers ::API::Helpers::LabelHelpers
before { authenticate! }
params do
requires :id, type: String, desc: 'The ID of a group'
end
2018-12-25 22:18:39 +00:00
resource :groups, requirements: API::NAMESPACE_OR_PROJECT_REQUIREMENTS do
desc 'Get all labels of the group' do
detail 'This feature was added in GitLab 11.8'
2018-12-28 09:47:00 +00:00
success Entities::GroupLabel
end
params do
optional :with_counts, type: Boolean, default: false,
desc: 'Include issue and merge request counts'
optional :include_ancestor_groups, type: Boolean, default: true,
desc: 'Include ancestor groups'
use :pagination
end
get ':id/labels' do
get_labels(user_group, Entities::GroupLabel, include_ancestor_groups: params[:include_ancestor_groups])
end
desc 'Create a new label' do
detail 'This feature was added in GitLab 11.8'
2018-12-28 09:47:00 +00:00
success Entities::GroupLabel
end
params do
2019-01-06 19:31:37 +00:00
use :label_create_params
end
post ':id/labels' do
2019-01-06 19:31:37 +00:00
create_label(user_group, Entities::GroupLabel)
end
desc 'Update an existing label. At least one optional parameter is required.' do
detail 'This feature was added in GitLab 11.8'
2018-12-28 09:47:00 +00:00
success Entities::GroupLabel
end
params do
2019-01-14 13:52:05 +00:00
requires :name, type: String, desc: 'The name of the label to be updated'
optional :new_name, type: String, desc: 'The new name of the label'
optional :color, type: String, desc: "The new color of the label given in 6-digit hex notation with leading '#' sign (e.g. #FFAABB) or one of the allowed CSS color names"
optional :description, type: String, desc: 'The new description of label'
at_least_one_of :new_name, :color, :description
end
put ':id/labels' do
2019-01-06 19:31:37 +00:00
update_label(user_group, Entities::GroupLabel)
end
2019-01-06 19:31:37 +00:00
desc 'Delete an existing label' do
detail 'This feature was added in GitLab 11.8'
2019-01-06 19:31:37 +00: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)
end
end
end
end