2021-01-29 00:20:46 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
class DependencyProxy < ::API::Base
|
|
|
|
helpers ::API::Helpers::PackagesHelpers
|
|
|
|
|
|
|
|
feature_category :dependency_proxy
|
|
|
|
|
2021-11-11 11:23:49 +05:30
|
|
|
after_validation do
|
2021-01-29 00:20:46 +05:30
|
|
|
authorize! :admin_group, user_group
|
|
|
|
end
|
|
|
|
|
|
|
|
params do
|
|
|
|
requires :id, type: String, desc: 'The ID of a group'
|
|
|
|
end
|
|
|
|
resource :groups, requirements: API::NAMESPACE_OR_PROJECT_REQUIREMENTS do
|
|
|
|
desc 'Deletes all dependency_proxy_blobs for a group' do
|
|
|
|
detail 'This feature was introduced in GitLab 12.10'
|
|
|
|
end
|
|
|
|
delete ':id/dependency_proxy/cache' do
|
|
|
|
not_found! unless user_group.dependency_proxy_feature_available?
|
|
|
|
|
|
|
|
# rubocop:disable CodeReuse/Worker
|
|
|
|
PurgeDependencyProxyCacheWorker.perform_async(current_user.id, user_group.id)
|
|
|
|
# rubocop:enable CodeReuse/Worker
|
2021-11-11 11:23:49 +05:30
|
|
|
|
|
|
|
status :accepted
|
2021-01-29 00:20:46 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|