debian-mirror-gitlab/app/services/protected_branches/api_service.rb
2019-12-04 20:38:33 +05:30

20 lines
576 B
Ruby

# frozen_string_literal: true
module ProtectedBranches
class ApiService < BaseService
def create
::ProtectedBranches::CreateService.new(@project, @current_user, protected_branch_params).execute
end
def protected_branch_params
{
name: params[:name],
push_access_levels_attributes: AccessLevelParams.new(:push, params).access_levels,
merge_access_levels_attributes: AccessLevelParams.new(:merge, params).access_levels
}
end
end
end
ProtectedBranches::ApiService.prepend_if_ee('EE::ProtectedBranches::ApiService')