2018-08-26 04:26:02 -04:00
# frozen_string_literal: true
2018-08-23 17:28:30 -04:00
module API
class GroupLabels < Grape :: API
include PaginationParams
2019-01-08 14:59:08 -05:00
helpers :: API :: Helpers :: LabelHelpers
2018-08-23 17:28:30 -04:00
before { authenticate! }
params do
requires :id , type : String , desc : 'The ID of a group'
end
2018-12-25 17:18:39 -05:00
resource :groups , requirements : API :: NAMESPACE_OR_PROJECT_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'
2018-08-23 17:28:30 -04:00
use :pagination
end
get ':id/labels' do
2019-01-06 14:31:37 -05:00
get_labels ( user_group , Entities :: GroupLabel )
2018-08-23 17:28:30 -04:00
end
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-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-14 08:52:05 -05:00
requires :name , type : String , desc : 'The name of the label to be updated'
2018-08-23 17:28:30 -04:00
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 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-01-08 14:59:08 -05:00
detail 'This feature was added in GitLab 11.8'
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
end
end
end